Gradient #009688 to #FFEB3B
A smooth gradient transitioning from #009688 to #FFEB3B. Copy the CSS code below to use this gradient in your projects.
Color Stops
Start Color
#009688
rgb(0, 150, 136)
hsl(174, 100%, 29%)
End Color
#FFEB3B
rgb(255, 235, 59)
hsl(54, 100%, 62%)
CSS Gradient Code
Linear (135deg)
background: linear-gradient(135deg, #009688, #FFEB3B);
Horizontal
background: linear-gradient(to right, #009688, #FFEB3B);
Radial
background: radial-gradient(circle, #009688, #FFEB3B);
Tailwind CSS Classes
Tailwind
bg-gradient-to-r from-[#009688] to-[#FFEB3B]
Direction Variants
Horizontal
Vertical
Diagonal
Corner
Frequently Asked Questions
How to create a gradient from #009688 to #FFEB3B?▾
Use the CSS property: linear-gradient(135deg, #009688, #FFEB3B). Apply it to the background property of any element. You can change the angle (135deg) to adjust the gradient direction.
What CSS property makes a gradient?▾
Gradients are created using the CSS background or background-image property with gradient functions like linear-gradient(), radial-gradient(), or conic-gradient(). For example: background: linear-gradient(to right, #009688, #FFEB3B);
How do I use this gradient in Tailwind CSS?▾
In Tailwind CSS, use the utility classes: "bg-gradient-to-r from-[#009688] to-[#FFEB3B]". The from- and to- classes set the gradient stops. Change bg-gradient-to-r to bg-gradient-to-br for a diagonal direction.