/* CSS */
.color-1 {
color: #F6C2B6;
}
.color-2 {
color: #F1A8A2;
}
.color-3 {
color: #D78C89;
}
.color-4 {
color: #D87F6F;
}
.color-5 {
color: #B56540;
}
/* CSS Variables */
:root {
--color-1: #F6C2B6;
--color-2: #F1A8A2;
--color-3: #D78C89;
--color-4: #D87F6F;
--color-5: #B56540;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F6C2B6, #F1A8A2, #D78C89, #D87F6F, #B56540);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F6C2B6, #F1A8A2, #D78C89, #D87F6F, #B56540);
}Coral Shades color palette created on .