/* CSS */
.color-1 {
color: #3B9B45;
}
.color-2 {
color: #6EBF7F;
}
.color-3 {
color: #94E6A0;
}
.color-4 {
color: #D6F8C4;
}
.color-5 {
color: #E5F3D3;
}
/* CSS Variables */
:root {
--color-1: #3B9B45;
--color-2: #6EBF7F;
--color-3: #94E6A0;
--color-4: #D6F8C4;
--color-5: #E5F3D3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3B9B45, #6EBF7F, #94E6A0, #D6F8C4, #E5F3D3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3B9B45, #6EBF7F, #94E6A0, #D6F8C4, #E5F3D3);
}
Shades Of Green color palette created on .