Vibrant Orange Color Palette CSS
/* CSS */
.color-1 {
color: #FF5D38;
}
.color-2 {
color: #FFBD38;
}
.color-3 {
color: #52E0B1;
}
.color-4 {
color: #387AFF;
}
.color-5 {
color: #9C38FF;
}
/* CSS Variables */
:root {
--color-1: #FF5D38;
--color-2: #FFBD38;
--color-3: #52E0B1;
--color-4: #387AFF;
--color-5: #9C38FF;
}
Vibrant Orange Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF5D38, #FFBD38, #52E0B1, #387AFF, #9C38FF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF5D38, #FFBD38, #52E0B1, #387AFF, #9C38FF);
}
Vibrant Orange color palette created on .
1 view