/* CSS */
.color-1 {
color: #FF5C9A;
}
.color-2 {
color: #FF9D5C;
}
.color-3 {
color: #FFD35C;
}
.color-4 {
color: #5CFF85;
}
.color-5 {
color: #5CB8FF;
}
/* CSS Variables */
:root {
--color-1: #FF5C9A;
--color-2: #FF9D5C;
--color-3: #FFD35C;
--color-4: #5CFF85;
--color-5: #5CB8FF;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF5C9A, #FF9D5C, #FFD35C, #5CFF85, #5CB8FF);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF5C9A, #FF9D5C, #FFD35C, #5CFF85, #5CB8FF);
}Passionate Spectrum color palette created on .