/* CSS */
.color-1 {
color: #A3D55D;
}
.color-2 {
color: #F2E1C4;
}
.color-3 {
color: #6A3E3E;
}
.color-4 {
color: #E3B9A1;
}
.color-5 {
color: #D8C2B6;
}
/* CSS Variables */
:root {
--color-1: #A3D55D;
--color-2: #F2E1C4;
--color-3: #6A3E3E;
--color-4: #E3B9A1;
--color-5: #D8C2B6;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A3D55D, #F2E1C4, #6A3E3E, #E3B9A1, #D8C2B6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A3D55D, #F2E1C4, #6A3E3E, #E3B9A1, #D8C2B6);
}
Green Mint Chocolate color palette created on .