/* CSS */
.color-1 {
color: #4D7F9D;
}
.color-2 {
color: #5CA2B7;
}
.color-3 {
color: #6EC4D4;
}
.color-4 {
color: #B4E0E4;
}
.color-5 {
color: #F0F8F9;
}
/* CSS Variables */
:root {
--color-1: #4D7F9D;
--color-2: #5CA2B7;
--color-3: #6EC4D4;
--color-4: #B4E0E4;
--color-5: #F0F8F9;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4D7F9D, #5CA2B7, #6EC4D4, #B4E0E4, #F0F8F9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4D7F9D, #5CA2B7, #6EC4D4, #B4E0E4, #F0F8F9);
}
Cerulean Serenity color palette created on .