/* CSS */
.color-1 {
color: #3B7E9B;
}
.color-2 {
color: #5ABF9A;
}
.color-3 {
color: #7DE3B3;
}
.color-4 {
color: #A7F6D6;
}
.color-5 {
color: #D2F9E9;
}
/* CSS Variables */
:root {
--color-1: #3B7E9B;
--color-2: #5ABF9A;
--color-3: #7DE3B3;
--color-4: #A7F6D6;
--color-5: #D2F9E9;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3B7E9B, #5ABF9A, #7DE3B3, #A7F6D6, #D2F9E9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3B7E9B, #5ABF9A, #7DE3B3, #A7F6D6, #D2F9E9);
}
Teal Institute color palette created on .