/* CSS */
.color-1 {
color: #E0794D;
}
.color-2 {
color: #F0A76A;
}
.color-3 {
color: #F5C299;
}
.color-4 {
color: #F7E7BB;
}
.color-5 {
color: #E0F7D4;
}
/* CSS Variables */
:root {
--color-1: #E0794D;
--color-2: #F0A76A;
--color-3: #F5C299;
--color-4: #F7E7BB;
--color-5: #E0F7D4;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #E0794D, #F0A76A, #F5C299, #F7E7BB, #E0F7D4);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #E0794D, #F0A76A, #F5C299, #F7E7BB, #E0F7D4);
}
Light Orange color palette created on .