- Filter Function
- An individual effect applied within the CSS filter property, such as blur(), brightness(), contrast(), grayscale(), hue-rotate(), invert(), saturate(), sepia(), or drop-shadow().
- Hue Rotation
- The hue-rotate() filter function that shifts all color hues by a given angle in degrees around the HSL color wheel. Does not affect brightness or saturation.
- Saturate
- The saturate() filter function that amplifies (above 1) or reduces (below 1) color intensity. saturate(0) produces grayscale; saturate(2) produces highly vivid colors.
- Drop Shadow
- The drop-shadow() filter function that renders a shadow following the element's actual alpha-channel boundary rather than its bounding box, unlike box-shadow.
- Backdrop Filter
- A separate CSS property from filter that applies filter effects to the content rendered behind the element, used for frosted glass and blur overlay effects.
- Convolution
- The mathematical operation underlying blur and sharpening filters, where each output pixel is a weighted average of neighboring input pixels according to a kernel matrix.