/* CSS */
.color-1 {
color: #70C13E;
}
.color-2 {
color: #8FDC5B;
}
.color-3 {
color: #A6E88C;
}
.color-4 {
color: #C5F6A2;
}
.color-5 {
color: #D6FFB3;
}
/* CSS Variables */
:root {
--color-1: #70C13E;
--color-2: #8FDC5B;
--color-3: #A6E88C;
--color-4: #C5F6A2;
--color-5: #D6FFB3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #70C13E, #8FDC5B, #A6E88C, #C5F6A2, #D6FFB3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #70C13E, #8FDC5B, #A6E88C, #C5F6A2, #D6FFB3);
}
Shades Of Green color palette created on .