/* CSS */
.color-1 {
color: #4A0D0D;
}
.color-2 {
color: #6D1C1C;
}
.color-3 {
color: #A72A2A;
}
.color-4 {
color: #D75050;
}
.color-5 {
color: #E6A3A3;
}
/* CSS Variables */
:root {
--color-1: #4A0D0D;
--color-2: #6D1C1C;
--color-3: #A72A2A;
--color-4: #D75050;
--color-5: #E6A3A3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4A0D0D, #6D1C1C, #A72A2A, #D75050, #E6A3A3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4A0D0D, #6D1C1C, #A72A2A, #D75050, #E6A3A3);
}
Blood Red To Black color palette created on .