/* CSS */
.color-1 {
color: #1D4F8B;
}
.color-2 {
color: #4B8BC3;
}
.color-3 {
color: #7BB4E0;
}
.color-4 {
color: #A5D7E9;
}
.color-5 {
color: #E0F7FA;
}
/* CSS Variables */
:root {
--color-1: #1D4F8B;
--color-2: #4B8BC3;
--color-3: #7BB4E0;
--color-4: #A5D7E9;
--color-5: #E0F7FA;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D4F8B, #4B8BC3, #7BB4E0, #A5D7E9, #E0F7FA);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D4F8B, #4B8BC3, #7BB4E0, #A5D7E9, #E0F7FA);
}
Shades Of Blue color palette created on .