/* CSS */
.color-1 {
color: #2B3D50;
}
.color-2 {
color: #4A6E8C;
}
.color-3 {
color: #7BA0A3;
}
.color-4 {
color: #B0D8D0;
}
.color-5 {
color: #F1E9B6;
}
/* CSS Variables */
:root {
--color-1: #2B3D50;
--color-2: #4A6E8C;
--color-3: #7BA0A3;
--color-4: #B0D8D0;
--color-5: #F1E9B6;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #2B3D50, #4A6E8C, #7BA0A3, #B0D8D0, #F1E9B6);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #2B3D50, #4A6E8C, #7BA0A3, #B0D8D0, #F1E9B6);
}Blue Serenity color palette created on .