/* CSS */
.color-1 {
color: #FF5733;
}
.color-2 {
color: #3333FF;
}
.color-3 {
color: #FF33A1;
}
.color-4 {
color: #A1FF33;
}
.color-5 {
color: #FFB733;
}
/* CSS Variables */
:root {
--color-1: #FF5733;
--color-2: #3333FF;
--color-3: #FF33A1;
--color-4: #A1FF33;
--color-5: #FFB733;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF5733, #3333FF, #FF33A1, #A1FF33, #FFB733);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF5733, #3333FF, #FF33A1, #A1FF33, #FFB733);
}Keep On Truckin' color palette created on .