GRADIENT GENERATOR
Advanced Gradient Generator
Create stunning CSS gradients with multiple stops, angles, and export options
0°90°180°270°360°
0%
100%
Preview
Export Code
/* CSS Gradient */ background: linear-gradient(45deg, #FF512F 0%, #DD2476 100%);
/* Tailwind - Add to tailwind.config.js */
backgroundImage: {
'custom-gradient': 'linear-gradient(45deg, #FF512F 0%, #DD2476 100%)',
}<!-- SVG Gradient -->
<defs>
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FF512F" />
<stop offset="100%" stop-color="#DD2476" />
</linearGradient>
</defs>