/* CSS */
.color-1 {
color: #DEA95E;
}
.color-2 {
color: #D1475C;
}
.color-3 {
color: #CA6DB8;
}
.color-4 {
color: #9CB8DE;
}
.color-5 {
color: #42A0B8;
}
/* CSS Variables */
:root {
--color-1: #DEA95E;
--color-2: #D1475C;
--color-3: #CA6DB8;
--color-4: #9CB8DE;
--color-5: #42A0B8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #DEA95E, #D1475C, #CA6DB8, #9CB8DE, #42A0B8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #DEA95E, #D1475C, #CA6DB8, #9CB8DE, #42A0B8);
}
Whimsy In Wonderland color palette created on .