/* CSS */
.color-1 {
color: #7C9956;
}
.color-2 {
color: #B6C8A7;
}
.color-3 {
color: #D4E1C1;
}
.color-4 {
color: #F4F7E3;
}
.color-5 {
color: #E1B12D;
}
/* CSS Variables */
:root {
--color-1: #7C9956;
--color-2: #B6C8A7;
--color-3: #D4E1C1;
--color-4: #F4F7E3;
--color-5: #E1B12D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #7C9956, #B6C8A7, #D4E1C1, #F4F7E3, #E1B12D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #7C9956, #B6C8A7, #D4E1C1, #F4F7E3, #E1B12D);
}
Green Ranch color palette created on .