/* CSS */
.color-1 {
color: #F9D55D;
}
.color-2 {
color: #F9A65D;
}
.color-3 {
color: #E77055;
}
.color-4 {
color: #D2516F;
}
.color-5 {
color: #A554A6;
}
/* CSS Variables */
:root {
--color-1: #F9D55D;
--color-2: #F9A65D;
--color-3: #E77055;
--color-4: #D2516F;
--color-5: #A554A6;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F9D55D, #F9A65D, #E77055, #D2516F, #A554A6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F9D55D, #F9A65D, #E77055, #D2516F, #A554A6);
}
Cyclical Dreams color palette created on .