/* CSS */
.color-1 {
color: #FF6BC6;
}
.color-2 {
color: #28FF14;
}
.color-3 {
color: #FFCB52;
}
.color-4 {
color: #0088FF;
}
.color-5 {
color: #FF3D5A;
}
/* CSS Variables */
:root {
--color-1: #FF6BC6;
--color-2: #28FF14;
--color-3: #FFCB52;
--color-4: #0088FF;
--color-5: #FF3D5A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF6BC6, #28FF14, #FFCB52, #0088FF, #FF3D5A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF6BC6, #28FF14, #FFCB52, #0088FF, #FF3D5A);
}
Vibrant Harmony color palette created on .