/* CSS */
.color-1 {
color: #BE312D;
}
.color-2 {
color: #D5491A;
}
.color-3 {
color: #E07638;
}
.color-4 {
color: #E09D38;
}
.color-5 {
color: #E0B938;
}
/* CSS Variables */
:root {
--color-1: #BE312D;
--color-2: #D5491A;
--color-3: #E07638;
--color-4: #E09D38;
--color-5: #E0B938;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #BE312D, #D5491A, #E07638, #E09D38, #E0B938);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #BE312D, #D5491A, #E07638, #E09D38, #E0B938);
}
Vibrant Red color palette created on .