/* CSS */
.color-1 {
color: #1D6D5A;
}
.color-2 {
color: #4BAF99;
}
.color-3 {
color: #7DD4B8;
}
.color-4 {
color: #A1E3CF;
}
.color-5 {
color: #D4F2E2;
}
/* CSS Variables */
:root {
--color-1: #1D6D5A;
--color-2: #4BAF99;
--color-3: #7DD4B8;
--color-4: #A1E3CF;
--color-5: #D4F2E2;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D6D5A, #4BAF99, #7DD4B8, #A1E3CF, #D4F2E2);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D6D5A, #4BAF99, #7DD4B8, #A1E3CF, #D4F2E2);
}Oceanic Serenity color palette created on .