/* CSS */
.color-1 {
color: #3B7E9B;
}
.color-2 {
color: #5D9FAC;
}
.color-3 {
color: #75B1B8;
}
.color-4 {
color: #A1D4D2;
}
.color-5 {
color: #D4E8E5;
}
/* CSS Variables */
:root {
--color-1: #3B7E9B;
--color-2: #5D9FAC;
--color-3: #75B1B8;
--color-4: #A1D4D2;
--color-5: #D4E8E5;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3B7E9B, #5D9FAC, #75B1B8, #A1D4D2, #D4E8E5);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3B7E9B, #5D9FAC, #75B1B8, #A1D4D2, #D4E8E5);
}
Teal Lake color palette created on .