/* CSS */
.color-1 {
color: #5E9C6B;
}
.color-2 {
color: #A2C8A6;
}
.color-3 {
color: #E4F1E4;
}
.color-4 {
color: #F7E3B6;
}
.color-5 {
color: #FF6E61;
}
/* CSS Variables */
:root {
--color-1: #5E9C6B;
--color-2: #A2C8A6;
--color-3: #E4F1E4;
--color-4: #F7E3B6;
--color-5: #FF6E61;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5E9C6B, #A2C8A6, #E4F1E4, #F7E3B6, #FF6E61);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5E9C6B, #A2C8A6, #E4F1E4, #F7E3B6, #FF6E61);
}Savannah Whispers color palette created on .