/* CSS */
.color-1 {
color: #F0A400;
}
.color-2 {
color: #D85F0E;
}
.color-3 {
color: #9C1C31;
}
.color-4 {
color: #60204F;
}
.color-5 {
color: #1F1B79;
}
/* CSS Variables */
:root {
--color-1: #F0A400;
--color-2: #D85F0E;
--color-3: #9C1C31;
--color-4: #60204F;
--color-5: #1F1B79;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0A400, #D85F0E, #9C1C31, #60204F, #1F1B79);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0A400, #D85F0E, #9C1C31, #60204F, #1F1B79);
}
Orange Skoll color palette created on .