/* CSS */
.color-1 {
color: #F4E1A4;
}
.color-2 {
color: #E1B5A3;
}
.color-3 {
color: #D8A7E2;
}
.color-4 {
color: #9BC3E4;
}
.color-5 {
color: #E8F09E;
}
/* CSS Variables */
:root {
--color-1: #F4E1A4;
--color-2: #E1B5A3;
--color-3: #D8A7E2;
--color-4: #9BC3E4;
--color-5: #E8F09E;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F4E1A4, #E1B5A3, #D8A7E2, #9BC3E4, #E8F09E);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F4E1A4, #E1B5A3, #D8A7E2, #9BC3E4, #E8F09E);
}
Spring Blue color palette created on .