/* CSS */
.color-1 {
color: #AAA99D;
}
.color-2 {
color: #D1C4B8;
}
.color-3 {
color: #E8D1C4;
}
.color-4 {
color: #E2A8A1;
}
.color-5 {
color: #C86F8D;
}
/* CSS Variables */
:root {
--color-1: #AAA99D;
--color-2: #D1C4B8;
--color-3: #E8D1C4;
--color-4: #E2A8A1;
--color-5: #C86F8D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #AAA99D, #D1C4B8, #E8D1C4, #E2A8A1, #C86F8D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #AAA99D, #D1C4B8, #E8D1C4, #E2A8A1, #C86F8D);
}
Dusty Valley color palette created on .