/* CSS */
.color-1 {
color: #DA6F0B;
}
.color-2 {
color: #E7B913;
}
.color-3 {
color: #CB9310;
}
.color-4 {
color: #A9590A;
}
.color-5 {
color: #5E2308;
}
/* CSS Variables */
:root {
--color-1: #DA6F0B;
--color-2: #E7B913;
--color-3: #CB9310;
--color-4: #A9590A;
--color-5: #5E2308;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #DA6F0B, #E7B913, #CB9310, #A9590A, #5E2308);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #DA6F0B, #E7B913, #CB9310, #A9590A, #5E2308);
}
Orange Slade color palette created on .