/* CSS */
.color-1 {
color: #7EC8F7;
}
.color-2 {
color: #5EB3E4;
}
.color-3 {
color: #4DA0D1;
}
.color-4 {
color: #0092B3;
}
.color-5 {
color: #008C9E;
}
/* CSS Variables */
:root {
--color-1: #7EC8F7;
--color-2: #5EB3E4;
--color-3: #4DA0D1;
--color-4: #0092B3;
--color-5: #008C9E;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #7EC8F7, #5EB3E4, #4DA0D1, #0092B3, #008C9E);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #7EC8F7, #5EB3E4, #4DA0D1, #0092B3, #008C9E);
}
Malibu Blue color palette created on .