/* CSS */
.color-1 {
color: #508E2F;
}
.color-2 {
color: #7FBF5A;
}
.color-3 {
color: #A3D888;
}
.color-4 {
color: #D1E7A2;
}
.color-5 {
color: #F3F9C8;
}
/* CSS Variables */
:root {
--color-1: #508E2F;
--color-2: #7FBF5A;
--color-3: #A3D888;
--color-4: #D1E7A2;
--color-5: #F3F9C8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #508E2F, #7FBF5A, #A3D888, #D1E7A2, #F3F9C8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #508E2F, #7FBF5A, #A3D888, #D1E7A2, #F3F9C8);
}
Crocodile's Embrace color palette created on .