/* CSS */
.color-1 {
color: #FF4500;
}
.color-2 {
color: #FF8C00;
}
.color-3 {
color: #FFD700;
}
/* CSS Variables */
:root {
--color-1: #FF4500;
--color-2: #FF8C00;
--color-3: #FFD700;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF4500, #FF8C00, #FFD700);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF4500, #FF8C00, #FFD700);
}Spicy Palette color palette created on .