/* CSS */
.color-1 {
color: #EFDF2E;
}
.color-2 {
color: #EFAF2E;
}
.color-3 {
color: #F05A28;
}
.color-4 {
color: #E03C1F;
}
.color-5 {
color: #C62458;
}
/* CSS Variables */
:root {
--color-1: #EFDF2E;
--color-2: #EFAF2E;
--color-3: #F05A28;
--color-4: #E03C1F;
--color-5: #C62458;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #EFDF2E, #EFAF2E, #F05A28, #E03C1F, #C62458);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #EFDF2E, #EFAF2E, #F05A28, #E03C1F, #C62458);
}
Toxic Sunrise color palette created on .