/* CSS */
.color-1 {
color: #00FF80;
}
.color-2 {
color: #33FF8F;
}
.color-3 {
color: #5CFFA0;
}
.color-4 {
color: #8AFFB3;
}
.color-5 {
color: #B8FFC5;
}
/* CSS Variables */
:root {
--color-1: #00FF80;
--color-2: #33FF8F;
--color-3: #5CFFA0;
--color-4: #8AFFB3;
--color-5: #B8FFC5;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #00FF80, #33FF8F, #5CFFA0, #8AFFB3, #B8FFC5);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #00FF80, #33FF8F, #5CFFA0, #8AFFB3, #B8FFC5);
}
Neon Venom color palette created on .