/* CSS */
.color-1 {
color: #62AFC0;
}
.color-2 {
color: #4FC4B9;
}
.color-3 {
color: #3FD5D2;
}
.color-4 {
color: #60D7E2;
}
.color-5 {
color: #A1E3E0;
}
/* CSS Variables */
:root {
--color-1: #62AFC0;
--color-2: #4FC4B9;
--color-3: #3FD5D2;
--color-4: #60D7E2;
--color-5: #A1E3E0;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #62AFC0, #4FC4B9, #3FD5D2, #60D7E2, #A1E3E0);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #62AFC0, #4FC4B9, #3FD5D2, #60D7E2, #A1E3E0);
}
Teal Breeze color palette created on .