/* CSS */
.color-1 {
color: #FF8052;
}
.color-2 {
color: #FFB84D;
}
.color-3 {
color: #FFD54D;
}
.color-4 {
color: #4EB7AC;
}
.color-5 {
color: #3E8E41;
}
/* CSS Variables */
:root {
--color-1: #FF8052;
--color-2: #FFB84D;
--color-3: #FFD54D;
--color-4: #4EB7AC;
--color-5: #3E8E41;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF8052, #FFB84D, #FFD54D, #4EB7AC, #3E8E41);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF8052, #FFB84D, #FFD54D, #4EB7AC, #3E8E41);
}Coral Green color palette created on .