/* CSS */
.color-1 {
color: #1E99AE;
}
.color-2 {
color: #1FC8D1;
}
.color-3 {
color: #3BE2E8;
}
.color-4 {
color: #6DF3E6;
}
.color-5 {
color: #A1F4F7;
}
/* CSS Variables */
:root {
--color-1: #1E99AE;
--color-2: #1FC8D1;
--color-3: #3BE2E8;
--color-4: #6DF3E6;
--color-5: #A1F4F7;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1E99AE, #1FC8D1, #3BE2E8, #6DF3E6, #A1F4F7);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1E99AE, #1FC8D1, #3BE2E8, #6DF3E6, #A1F4F7);
}
Eastern Blue Oasis color palette created on .