/* CSS */
.color-1 {
color: #D6006F;
}
.color-2 {
color: #1EB880;
}
.color-3 {
color: #A73BBA;
}
.color-4 {
color: #FF6E61;
}
.color-5 {
color: #B3FFFB;
}
/* CSS Variables */
:root {
--color-1: #D6006F;
--color-2: #1EB880;
--color-3: #A73BBA;
--color-4: #FF6E61;
--color-5: #B3FFFB;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D6006F, #1EB880, #A73BBA, #FF6E61, #B3FFFB);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D6006F, #1EB880, #A73BBA, #FF6E61, #B3FFFB);
}
Fuchsia And Green Fusion color palette created on .