Gradient Generator

Tailwind Gradient Generator

Create beautiful linear, radial, and conic gradients with multiple color stops

Live Preview
Preset Gradients
Tailwind Classes
1bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500
CSS Code
1background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
Tailwind Config
1// tailwind.config.js
2module.exports = {
3 theme: {
4 extend: {
5 backgroundImage: {
6 'custom-gradient': 'linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%)',
7 },
8 },
9 },
10}
11
12// Usage: className="bg-custom-gradient"
Gradient Type
Direction
Color Stops (3)
#1
0%
#2
50%
#3
100%