/* CSS */
.color-1 {
color: #4CAF50;
}
.color-2 {
color: #FFEB3B;
}
.color-3 {
color: #FF5722;
}
.color-4 {
color: #2196F3;
}
.color-5 {
color: #9C27B0;
}
/* CSS Variables */
:root {
--color-1: #4CAF50;
--color-2: #FFEB3B;
--color-3: #FF5722;
--color-4: #2196F3;
--color-5: #9C27B0;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4CAF50, #FFEB3B, #FF5722, #2196F3, #9C27B0);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4CAF50, #FFEB3B, #FF5722, #2196F3, #9C27B0);
}
Life's Vibrance color palette created on .