/* CSS */
.color-1 {
color: #A0DAD7;
}
.color-2 {
color: #75D7D2;
}
.color-3 {
color: #4DC7C1;
}
.color-4 {
color: #2BB1AE;
}
.color-5 {
color: #009999;
}
/* CSS Variables */
:root {
--color-1: #A0DAD7;
--color-2: #75D7D2;
--color-3: #4DC7C1;
--color-4: #2BB1AE;
--color-5: #009999;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A0DAD7, #75D7D2, #4DC7C1, #2BB1AE, #009999);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A0DAD7, #75D7D2, #4DC7C1, #2BB1AE, #009999);
}
Tropical Serenity color palette created on .