/* CSS */
.color-1 {
color: #4B8D91;
}
.color-2 {
color: #6CB2B2;
}
.color-3 {
color: #77D4D3;
}
.color-4 {
color: #A6E3E0;
}
.color-5 {
color: #BFEEF3;
}
/* CSS Variables */
:root {
--color-1: #4B8D91;
--color-2: #6CB2B2;
--color-3: #77D4D3;
--color-4: #A6E3E0;
--color-5: #BFEEF3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4B8D91, #6CB2B2, #77D4D3, #A6E3E0, #BFEEF3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4B8D91, #6CB2B2, #77D4D3, #A6E3E0, #BFEEF3);
}
Teal Breeze color palette created on .