/* CSS */
.color-1 {
color: #1D3E6D;
}
.color-2 {
color: #2E6A9E;
}
.color-3 {
color: #4C9BB8;
}
.color-4 {
color: #A5E0E9;
}
.color-5 {
color: #EFF8FB;
}
/* CSS Variables */
:root {
--color-1: #1D3E6D;
--color-2: #2E6A9E;
--color-3: #4C9BB8;
--color-4: #A5E0E9;
--color-5: #EFF8FB;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D3E6D, #2E6A9E, #4C9BB8, #A5E0E9, #EFF8FB);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D3E6D, #2E6A9E, #4C9BB8, #A5E0E9, #EFF8FB);
}
Midnight Blue Quirks color palette created on .