/* CSS */
.color-1 {
color: #74C365;
}
.color-2 {
color: #B9E09E;
}
.color-3 {
color: #F3F9D2;
}
.color-4 {
color: #F8D45D;
}
.color-5 {
color: #E1503D;
}
/* CSS Variables */
:root {
--color-1: #74C365;
--color-2: #B9E09E;
--color-3: #F3F9D2;
--color-4: #F8D45D;
--color-5: #E1503D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #74C365, #B9E09E, #F3F9D2, #F8D45D, #E1503D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #74C365, #B9E09E, #F3F9D2, #F8D45D, #E1503D);
}Mantis Green color palette created on .