/* CSS */
.color-1 {
color: #5A3E2B;
}
.color-2 {
color: #B6695D;
}
.color-3 {
color: #E2A87E;
}
.color-4 {
color: #F7E3B6;
}
.color-5 {
color: #FF9E9E;
}
/* CSS Variables */
:root {
--color-1: #5A3E2B;
--color-2: #B6695D;
--color-3: #E2A87E;
--color-4: #F7E3B6;
--color-5: #FF9E9E;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5A3E2B, #B6695D, #E2A87E, #F7E3B6, #FF9E9E);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5A3E2B, #B6695D, #E2A87E, #F7E3B6, #FF9E9E);
}
Sour Elegance color palette created on .