/* CSS */
.color-1 {
color: #A9E5B1;
}
.color-2 {
color: #B3E6C4;
}
.color-3 {
color: #C7F0D2;
}
.color-4 {
color: #E3FFC7;
}
.color-5 {
color: #D5FFB8;
}
/* CSS Variables */
:root {
--color-1: #A9E5B1;
--color-2: #B3E6C4;
--color-3: #C7F0D2;
--color-4: #E3FFC7;
--color-5: #D5FFB8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A9E5B1, #B3E6C4, #C7F0D2, #E3FFC7, #D5FFB8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A9E5B1, #B3E6C4, #C7F0D2, #E3FFC7, #D5FFB8);
}
Shades Of Green color palette created on .