/* CSS */
.color-1 {
color: #D69E9A;
}
.color-2 {
color: #C66C6C;
}
.color-3 {
color: #A54A59;
}
.color-4 {
color: #7E2A3B;
}
.color-5 {
color: #4D1919;
}
/* CSS Variables */
:root {
--color-1: #D69E9A;
--color-2: #C66C6C;
--color-3: #A54A59;
--color-4: #7E2A3B;
--color-5: #4D1919;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D69E9A, #C66C6C, #A54A59, #7E2A3B, #4D1919);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D69E9A, #C66C6C, #A54A59, #7E2A3B, #4D1919);
}
Red Vigilante color palette created on .