/* CSS */
.color-1 {
color: #3BB09E;
}
.color-2 {
color: #5BC8B0;
}
.color-3 {
color: #8FD6C2;
}
.color-4 {
color: #A3E0D3;
}
.color-5 {
color: #D3F3E1;
}
/* CSS Variables */
:root {
--color-1: #3BB09E;
--color-2: #5BC8B0;
--color-3: #8FD6C2;
--color-4: #A3E0D3;
--color-5: #D3F3E1;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3BB09E, #5BC8B0, #8FD6C2, #A3E0D3, #D3F3E1);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3BB09E, #5BC8B0, #8FD6C2, #A3E0D3, #D3F3E1);
}
Teal Oasis color palette created on .