/* CSS */
.color-1 {
color: #F3A582;
}
.color-2 {
color: #F7DA4B;
}
.color-3 {
color: #FF6E61;
}
.color-4 {
color: #69AF4B;
}
.color-5 {
color: #4B6ABE;
}
/* CSS Variables */
:root {
--color-1: #F3A582;
--color-2: #F7DA4B;
--color-3: #FF6E61;
--color-4: #69AF4B;
--color-5: #4B6ABE;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F3A582, #F7DA4B, #FF6E61, #69AF4B, #4B6ABE);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F3A582, #F7DA4B, #FF6E61, #69AF4B, #4B6ABE);
}
Zeke's Vibrant Journey color palette created on .