/* CSS */
.color-1 {
color: #D9C57D;
}
.color-2 {
color: #B4AF50;
}
.color-3 {
color: #8EAA3C;
}
.color-4 {
color: #4B7A2E;
}
.color-5 {
color: #2B5E30;
}
/* CSS Variables */
:root {
--color-1: #D9C57D;
--color-2: #B4AF50;
--color-3: #8EAA3C;
--color-4: #4B7A2E;
--color-5: #2B5E30;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D9C57D, #B4AF50, #8EAA3C, #4B7A2E, #2B5E30);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D9C57D, #B4AF50, #8EAA3C, #4B7A2E, #2B5E30);
}
Dagon's Delight color palette created on .