Tested tool guide
Tested browser tools
Checked August 15, 2026
What CSS Filter Playground does, with a checked example
CSS Filter Playground lets you build a CSS filter value by stacking individual filter functions - blur, brightness, contrast, hue-rotate, grayscale, saturate, sepia, invert, opacity, drop-shadow - each with its own slider, and see the combined effect applied live to a sample image in the browser. As you add, adjust, or reorder functions it rewrites the filter: declaration to match, so what's on screen is exactly the CSS you'd paste into a stylesheet. The part people miss: filter functions apply in the order they're listed, left to right, so the same functions with the same values can render differently once reordered.
Worked example
A concrete input and expected output from the current implementation.
Input
Stack, in this order: blur 4px, then brightness 120%, then contrast 90%, then hue-rotate 30deg
->
Expected output
filter: blur(4px) brightness(120%) contrast(90%) hue-rotate(30deg);
The tool joins the active functions in the order they were added, using the unit each function expects - px for blur, percentages for brightness and contrast, degrees for hue-rotate.