/* CSS */
.color-1 {
color: #FFC69E;
}
.color-2 {
color: #FFB399;
}
.color-3 {
color: #FF9585;
}
.color-4 {
color: #FF5C87;
}
.color-5 {
color: #FF296D;
}
/* CSS Variables */
:root {
--color-1: #FFC69E;
--color-2: #FFB399;
--color-3: #FF9585;
--color-4: #FF5C87;
--color-5: #FF296D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FFC69E, #FFB399, #FF9585, #FF5C87, #FF296D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FFC69E, #FFB399, #FF9585, #FF5C87, #FF296D);
}
Dandicus Dream color palette created on .