CSS Filter Generator
Layer blur, brightness, contrast, grayscale, hue-rotate, invert, opacity, saturate, and sepia into a single CSS filter. Preview on a live illustration, photo, or text.
filter: none;How to use the CSS filter generator
The filter property applies a space-separated pipeline of image-processing functions to any element and everything it paints — images, text, borders, even backdrops of nested children. Toggle each function on and tune its slider; the tool only emits enabled functions, so the final CSS stays compact. You can also start from a preset (Vintage, Noir, X-ray…) and then fine-tune the values.
Order matters. Filters are applied left-to-right, so blur(4px) contrast(150%) sharpens an already-blurred image, while contrast(150%) blur(4px) softens a high-contrast one. This generator emits functions in a fixed, readable order (blur → sepia → …), but you can rearrange them in your stylesheet if the sequence matters for your look.
Unit cheat sheet. blur takes pixels — anything over ~8px starts to look glassy. hue-rotate takes degrees on the HSL wheel — 180deg is complementary, 90deg is a quarter-turn. Everything else is a percentage: brightness / contrast / saturate default to 100% and can go above 100% to intensify, while grayscale / invert / sepia / opacitymax out at 100%. Setting any percentage filter to 0% removes that effect entirely — which is why the tool treats the neutral value as “off.”
Watch performance on animated elements. Each filter is a paint- stage effect, so animating filter directly triggers repaint every frame. If you need to transition a filter, wrap the filtered element with will-change: filter so the browser promotes it to its own layer, or animate only opacity on a shadow pseudo-element and keep the filter static.
Related Tools
- 02·CSSBox Shadow Generatoraccent · #555A6B
Layer multiple box shadows with full control over offset, blur, spread, color, and inset. Copy the CSS instantly.
- 02·CSSText Shadow Generatoraccent · #C026D3
Stack text-shadow layers for drop shadows, neon glows, 3D type, letterpress, and long shadows. Preview on live text and copy the CSS.
- 02·CSSGradient Generatoraccent · #E91E63
Build linear, radial, and conic CSS gradients with multiple color stops, angle control, and real-time preview.
- 01·COLColorblind Simulatoraccent · #D00000
See your palette through seven types of color vision deficiency. Spot pairs that collide for the ~8% of users with red/green confusion.
Runs in your browser.
Every color, gradient and CSS output is generated on this page. Nothing is uploaded, logged or shared.