/* CSS */
.color-1 {
color: #F0A800;
}
.color-2 {
color: #D15E00;
}
.color-3 {
color: #B85000;
}
.color-4 {
color: #803C00;
}
.color-5 {
color: #4D2B00;
}
/* CSS Variables */
:root {
--color-1: #F0A800;
--color-2: #D15E00;
--color-3: #B85000;
--color-4: #803C00;
--color-5: #4D2B00;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0A800, #D15E00, #B85000, #803C00, #4D2B00);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0A800, #D15E00, #B85000, #803C00, #4D2B00);
}Orange Sunset color palette created on .