/* CSS */
.color-1 {
color: #1E4E7B;
}
.color-2 {
color: #498CAB;
}
.color-3 {
color: #90C4D5;
}
.color-4 {
color: #D9E8E8;
}
.color-5 {
color: #F2BA5A;
}
/* CSS Variables */
:root {
--color-1: #1E4E7B;
--color-2: #498CAB;
--color-3: #90C4D5;
--color-4: #D9E8E8;
--color-5: #F2BA5A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1E4E7B, #498CAB, #90C4D5, #D9E8E8, #F2BA5A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1E4E7B, #498CAB, #90C4D5, #D9E8E8, #F2BA5A);
}
Blue Professional color palette created on .