/* CSS */
.color-1 {
color: #1E8BBE;
}
.color-2 {
color: #2EB7D6;
}
.color-3 {
color: #5DE0E5;
}
.color-4 {
color: #A4F4F1;
}
.color-5 {
color: #F1F9F9;
}
/* CSS Variables */
:root {
--color-1: #1E8BBE;
--color-2: #2EB7D6;
--color-3: #5DE0E5;
--color-4: #A4F4F1;
--color-5: #F1F9F9;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1E8BBE, #2EB7D6, #5DE0E5, #A4F4F1, #F1F9F9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1E8BBE, #2EB7D6, #5DE0E5, #A4F4F1, #F1F9F9);
}
Abyssal Tides color palette created on .