/* CSS */
.color-1 {
color: #3C8BB9;
}
.color-2 {
color: #5CBAD1;
}
.color-3 {
color: #A3D5E0;
}
.color-4 {
color: #F1E0B6;
}
.color-5 {
color: #FF6E61;
}
/* CSS Variables */
:root {
--color-1: #3C8BB9;
--color-2: #5CBAD1;
--color-3: #A3D5E0;
--color-4: #F1E0B6;
--color-5: #FF6E61;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3C8BB9, #5CBAD1, #A3D5E0, #F1E0B6, #FF6E61);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3C8BB9, #5CBAD1, #A3D5E0, #F1E0B6, #FF6E61);
}
Marvin's Dreamscape color palette created on .