/* CSS */
.color-1 {
color: #C92C3C;
}
.color-2 {
color: #D35F6E;
}
.color-3 {
color: #E2A2A9;
}
.color-4 {
color: #F2C5C7;
}
.color-5 {
color: #F8E2E3;
}
/* CSS Variables */
:root {
--color-1: #C92C3C;
--color-2: #D35F6E;
--color-3: #E2A2A9;
--color-4: #F2C5C7;
--color-5: #F8E2E3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #C92C3C, #D35F6E, #E2A2A9, #F2C5C7, #F8E2E3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #C92C3C, #D35F6E, #E2A2A9, #F2C5C7, #F8E2E3);
}
Royal Red Shades color palette created on .