/* CSS */
.color-1 {
color: #4B8B8A;
}
.color-2 {
color: #A2D2CE;
}
.color-3 {
color: #E8DEC9;
}
.color-4 {
color: #DFA77C;
}
.color-5 {
color: #CE6B5A;
}
/* CSS Variables */
:root {
--color-1: #4B8B8A;
--color-2: #A2D2CE;
--color-3: #E8DEC9;
--color-4: #DFA77C;
--color-5: #CE6B5A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4B8B8A, #A2D2CE, #E8DEC9, #DFA77C, #CE6B5A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4B8B8A, #A2D2CE, #E8DEC9, #DFA77C, #CE6B5A);
}
Caleb Widogast color palette created on .