/* CSS */
.color-1 {
color: #FF8A92;
}
.color-2 {
color: #FFB09E;
}
.color-3 {
color: #FFC994;
}
.color-4 {
color: #FFEAA3;
}
.color-5 {
color: #FFF0B8;
}
/* CSS Variables */
:root {
--color-1: #FF8A92;
--color-2: #FFB09E;
--color-3: #FFC994;
--color-4: #FFEAA3;
--color-5: #FFF0B8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF8A92, #FFB09E, #FFC994, #FFEAA3, #FFF0B8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF8A92, #FFB09E, #FFC994, #FFEAA3, #FFF0B8);
}
Vibrant Orange color palette created on .