/* CSS */
.color-1 {
color: #5C2E2E;
}
.color-2 {
color: #894D4D;
}
.color-3 {
color: #B47474;
}
.color-4 {
color: #D7A3A3;
}
.color-5 {
color: #EAB8B8;
}
/* CSS Variables */
:root {
--color-1: #5C2E2E;
--color-2: #894D4D;
--color-3: #B47474;
--color-4: #D7A3A3;
--color-5: #EAB8B8;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5C2E2E, #894D4D, #B47474, #D7A3A3, #EAB8B8);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5C2E2E, #894D4D, #B47474, #D7A3A3, #EAB8B8);
}Red Wine Shades color palette created on .