Gradient Generator
Gradient Generator
Create beautiful CSS gradients with live preview.
90° • linear • 2 colors
90°
0%
100%
background: linear-gradient(90deg, #6366f1, #ec4899);
.gradient-bg {
background: linear-gradient(90deg, #6366f1, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Or as regular background */
.bg-gradient {
background: linear-gradient(90deg, #6366f1, #ec4899);
background-size: 200% 200%;
animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}