/* CSS */
.color-1 {
color: #1F4751;
}
.color-2 {
color: #3A6F73;
}
.color-3 {
color: #5C9A9D;
}
.color-4 {
color: #8DC3C8;
}
.color-5 {
color: #B1DFE7;
}
/* CSS Variables */
:root {
--color-1: #1F4751;
--color-2: #3A6F73;
--color-3: #5C9A9D;
--color-4: #8DC3C8;
--color-5: #B1DFE7;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1F4751, #3A6F73, #5C9A9D, #8DC3C8, #B1DFE7);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1F4751, #3A6F73, #5C9A9D, #8DC3C8, #B1DFE7);
}
Blue Serenity color palette created on .