/* CSS */
.color-1 {
color: #FF6E61;
}
.color-2 {
color: #69AF4B;
}
.color-3 {
color: #F9D36C;
}
.color-4 {
color: #4B91E2;
}
.color-5 {
color: #D35F9F;
}
/* CSS Variables */
:root {
--color-1: #FF6E61;
--color-2: #69AF4B;
--color-3: #F9D36C;
--color-4: #4B91E2;
--color-5: #D35F9F;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF6E61, #69AF4B, #F9D36C, #4B91E2, #D35F9F);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF6E61, #69AF4B, #F9D36C, #4B91E2, #D35F9F);
}
Vibrant Rainbow color palette created on .