Create CSS gradients with multiple color stops. Support for linear, radial, and conic gradients with live preview and code export.
Two-color horizontal.gradient-element {
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}Center spotlight effect.gradient-element {
background: radial-gradient(circle at center, #ffffff 0%, #000000 100%);
}Color wheel effect.gradient-element {
background: conic-gradient(from 0deg at center,
#ff0000 0%, #ffff00 17%, #00ff00 33%,
#00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}Rainbow effect.gradient-element {
background: linear-gradient(90deg,
#ff0000 0%, #ff7f00 17%, #ffff00 33%,
#00ff00 50%, #0000ff 67%, #4b0082 83%, #9400d3 100%);
}Striped pattern.gradient-element {
background: repeating-linear-gradient(
45deg,
#606dbc 0px, #606dbc 10px,
#465298 10px, #465298 20px
);
}Multiple gradient layers.gradient-element {
background:
linear-gradient(135deg, rgba(255,0,0,0.5) 0%, transparent 50%),
linear-gradient(225deg, rgba(0,255,0,0.5) 0%, transparent 50%),
linear-gradient(315deg, rgba(0,0,255,0.5) 0%, transparent 50%);
}Advanced CSS box-shadow generator with 25+ presets (Material Design, Tailwind, Neumorphism, Glow effects), multiple layers, color picker with opacity, customizable preview, and 4 output formats (CSS, Tailwind, SCSS, React).
Generate harmonious color palettes using color theory. Create complementary, analogous, triadic, and more color schemes.