/* CSS */
.color-1 {
color: #A3D9A1;
}
.color-2 {
color: #F2D8B5;
}
.color-3 {
color: #F6A655;
}
.color-4 {
color: #D27B56;
}
.color-5 {
color: #5D4F7D;
}
/* CSS Variables */
:root {
--color-1: #A3D9A1;
--color-2: #F2D8B5;
--color-3: #F6A655;
--color-4: #D27B56;
--color-5: #5D4F7D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A3D9A1, #F2D8B5, #F6A655, #D27B56, #5D4F7D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A3D9A1, #F2D8B5, #F6A655, #D27B56, #5D4F7D);
}Verdant Melody color palette created on .