Color & CSS tools
Average & Dominant Color Extractor
Upload an image and get both its average color (all pixels blended together) and its dominant color palette (the most common color clusters) side by side — with HEX, RGB, and HSL for each, one click to copy.
Background Pattern Generator
Build a pure-CSS background pattern (dots, grid, lines, checks, diamonds) with an opacity slider on both the pattern and background color — checked directly, a popular pattern generator has no opacity control at all, so a subtle texture means hand-editing the CSS into rgba(). A sample-text overlay toggle also shows the pattern behind real headline copy so you can catch readability problems before shipping it.
Border Radius Generator
Free CSS border-radius generator with independent horizontal/vertical control on all 4 corners (elliptical corners) — several simpler generators we checked only support a single radius value per corner, no elliptical split. Also switches between px and % units, so you can make responsive shapes (like a true circle) that most fixed-px tools can't.
Box Shadow Generator
Free CSS box-shadow generator that starts from a real preset, not a blank canvas — every generator we checked (e.g. front-end-tools.com) makes you dial in x/y/blur/spread/color from zero every time. Pick Material elevation, Neumorphism, or Long shadow and adjust from there. Supports up to 3 layered shadows, each individually toggled on/off, with inset support.
Checkbox Style Generator
Generate a custom-styled checkbox that hides the native input with opacity:0, not display:none — verified directly that display:none removes a checkbox from the keyboard tab order entirely (a .focus() call on it silently fails), while opacity:0 keeps it fully keyboard- and screen-reader-accessible. Includes :focus-visible and :indeterminate styling by default.
Clip Path Generator
Pick a preset shape (triangle, star, arrow, speech bubble, or circle/ellipse/inset) and edit every point or parameter with a plain number input instead of dragging a mouse — checked directly, a popular clip-path tool has no numeric input at all, no copy button, and no -webkit-clip-path prefix in its output. This one includes all three.
Color Mixer
Mix two colors two ways at once — plain RGB averaging, and OKLab, the color space CSS's own color-mix() actually defaults to — shown side by side with each result's chroma, so you can see exactly why RGB averaging looks muddier (mixing red and green in RGB gives a chroma of 0.126, about half of either source color).
Color Shade Generator
Generate a lighten/darken scale from any color two ways at once — traditional HSL, and perceptually uniform OKLCH — shown side by side, so you can actually see why HSL's brightness steps look wildly inconsistent from one hue to the next (yellow and blue at identical HSL lightness differ in real brightness by about 13x).
Color Unmixer
See a color you like and wonder what two colors would mix together to make it? Pick the target — no need to already know one of the ingredients, unlike similar reverse-mix calculators — and get two candidate colors, with a live preview proving they mix (in the same OKLab model as Color Mixer) back to exactly that color, not an approximation.
Contrast Checker
Check text/background contrast against both WCAG 2.x (today's legal/practical standard) and APCA (its documented WCAG 3 successor) at once — because WCAG 2.x's formula is known to overstate contrast for darker color combinations (verified directly: gray #7d7d7d text on black passes WCAG AA at 5.10:1, but scores a weak APCA Lc of -33.3, well below what's needed for reliable body text).
CSS Triangle Generator
Free CSS triangle/arrow generator with a full 0-360° rotation slider — we checked a popular competitor (10015.io) directly and it only offers 8 fixed preset directions with no arbitrary angle control. It also solves a limitation that competitor's own docs admit: a border-trick CSS triangle 'can't have box-shadow' because it's a 0x0 element — this tool uses filter: drop-shadow() instead, which follows the actual rendered triangle shape correctly.
Cubic Bezier Generator
Drag the curve or type exact numbers into 4 coordinate fields — checked directly, a popular cubic-bezier tool has zero number inputs anywhere, mouse-drag only. Includes 24 named easings.net presets (Sine/Quad/Cubic/Quart/Quint/Expo/Circ/Back) beyond the usual 5 basics, and a real card UI you can play to feel the motion instead of watching an abstract dot.
Glassmorphism Generator
Pick any tint color for your frosted-glass CSS — checked directly, the original glassmorphism.com generator has no color control at all, its output is permanently white glass. Every slider here (tint opacity, blur, border opacity, radius) shows its live value and pairs with a number input, unlike a second competitor whose sliders have zero visible values anywhere. No login required.
Gradient Generator
Free CSS gradient generator supporting linear, radial, AND conic gradients — we checked two popular generators (cssgradient.io, 10015.io) directly and neither supports conic at all. It also includes an optional 'Animate' toggle: since browsers can't interpolate gradient colors via transition, this uses a background-position shift trick to make the gradient visibly move, something no competitor we reviewed offered — paired with a prefers-reduced-motion guard.
HEX to RGBA Converter
Convert between HEX, RGB, RGBA, and HSL instantly — edit any format and the other three update live, with a built-in picker and alpha slider.
Loader Generator
Generate a CSS loading spinner that includes accessibility markup by default — role="status", a screen-reader-only "Loading…" label, and a prefers-reduced-motion block that stops the animation — instead of leaving it up to you (a well-known competitor's output, checked directly, is a bare <div class="spinner"></div> with none of that).
Switch/Toggle Generator
Generate a sliding toggle switch with role="switch" and a real label included by default — checked directly, a popular competitor's generated code is a bare, unlabeled <input type="checkbox"> with neither, so screen readers announce it as an unnamed checkbox instead of "switch, on/off", the exact metaphor the visual design promises.
Text Glitch Effect Generator
Free CSS glitch text generator with three effect types (RGB-split color, noise, transform), adjustable intensity and speed, and one-click code copy — a popular competitor (CSS Portal) has no copy button and no speed/intensity control at all. It also respects accessibility: toggle 'Reduce motion' to preview the static look, and every copied snippet includes its own prefers-reduced-motion media query, which we checked and found missing from every competitor we reviewed.