/* CSS */
.color-1 {
color: #A51D26;
}
.color-2 {
color: #C85141;
}
.color-3 {
color: #F0A800;
}
.color-4 {
color: #E6C328;
}
.color-5 {
color: #4C8B2D;
}
/* CSS Variables */
:root {
--color-1: #A51D26;
--color-2: #C85141;
--color-3: #F0A800;
--color-4: #E6C328;
--color-5: #4C8B2D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A51D26, #C85141, #F0A800, #E6C328, #4C8B2D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A51D26, #C85141, #F0A800, #E6C328, #4C8B2D);
}
Red Ladybug color palette created on .