/* CSS */
.color-1 {
color: #0031B8;
}
.color-2 {
color: #0043E0;
}
.color-3 {
color: #3D81FF;
}
.color-4 {
color: #80C4FF;
}
.color-5 {
color: #EBF1FF;
}
/* CSS Variables */
:root {
--color-1: #0031B8;
--color-2: #0043E0;
--color-3: #3D81FF;
--color-4: #80C4FF;
--color-5: #EBF1FF;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #0031B8, #0043E0, #3D81FF, #80C4FF, #EBF1FF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #0031B8, #0043E0, #3D81FF, #80C4FF, #EBF1FF);
}
Celestial Blue Harmony color palette created on .