/* CSS */
.color-1 {
color: #FF6E61;
}
.color-2 {
color: #F7A173;
}
.color-3 {
color: #F1D1A2;
}
.color-4 {
color: #D8E7B1;
}
.color-5 {
color: #A1D5E8;
}
/* CSS Variables */
:root {
--color-1: #FF6E61;
--color-2: #F7A173;
--color-3: #F1D1A2;
--color-4: #D8E7B1;
--color-5: #A1D5E8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF6E61, #F7A173, #F1D1A2, #D8E7B1, #A1D5E8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF6E61, #F7A173, #F1D1A2, #D8E7B1, #A1D5E8);
}
Coral Rahma color palette created on .