CSS Utilities for Developers
A curated collection of modern CSS generators. Pick a tool below and craft beautiful styles in seconds.
Box Shadow
Generate layered drop shadows with full color and opacity control. Supports image preview.
Gradient
Create linear and radial gradients with precise direction and color blending.
Border Radius
Fine-tune each corner independently. From sharp edges to smooth organic shapes.
Text Shadow
Add depth to typography with customizable blur, offset, and color shadows.
Glassmorphism
Design frosted glass UI elements with blur, saturation, and border controls.
Transform
Rotate, scale, skew, and translate elements with real-time 2D transformation preview.
Filter
Apply blur, brightness, contrast, grayscale, hue-rotate, saturate, and sepia effects.
Box Shadow
Shadow Properties
box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.5);
Gradient Generator
background: linear-gradient(to right, #ec4899, #8b5cf6);
Border Radius
border-radius: 0px 0px 0px 0px;
Text Shadow
text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
Glassmorphism
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.18);
CSS Transform
transform: rotate(0deg) scale(1) skew(0deg, 0deg) translate(0px, 0px);
CSS Filter
filter: blur(0px) brightness(100%) contrast(100%) grayscale(0%) hue-rotate(0deg) saturate(100%) sepia(0%);