Gradient #FF5722 to #03A9F4
A smooth gradient transitioning from #FF5722 to #03A9F4. Copy the CSS code below to use this gradient in your projects.
Color Stops
Start Color
#FF5722
rgb(255, 87, 34)
hsl(14, 100%, 57%)
End Color
#03A9F4
rgb(3, 169, 244)
hsl(199, 98%, 48%)
CSS Gradient Code
Linear (135deg)
background: linear-gradient(135deg, #FF5722, #03A9F4);
Horizontal
background: linear-gradient(to right, #FF5722, #03A9F4);
Radial
background: radial-gradient(circle, #FF5722, #03A9F4);
Tailwind CSS Classes
Tailwind
bg-gradient-to-r from-[#FF5722] to-[#03A9F4]
Direction Variants
Horizontal
Vertical
Diagonal
Corner
Frequently Asked Questions
How to create a gradient from #FF5722 to #03A9F4?▾
Use the CSS property: linear-gradient(135deg, #FF5722, #03A9F4). 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, #FF5722, #03A9F4);
How do I use this gradient in Tailwind CSS?▾
In Tailwind CSS, use the utility classes: "bg-gradient-to-r from-[#FF5722] to-[#03A9F4]". The from- and to- classes set the gradient stops. Change bg-gradient-to-r to bg-gradient-to-br for a diagonal direction.