/* CSS */
.color-1 {
color: #2F4B6A;
}
.color-2 {
color: #4F6E8C;
}
.color-3 {
color: #7E9BBE;
}
.color-4 {
color: #B6D2E7;
}
.color-5 {
color: #F5B400;
}
/* CSS Variables */
:root {
--color-1: #2F4B6A;
--color-2: #4F6E8C;
--color-3: #7E9BBE;
--color-4: #B6D2E7;
--color-5: #F5B400;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #2F4B6A, #4F6E8C, #7E9BBE, #B6D2E7, #F5B400);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #2F4B6A, #4F6E8C, #7E9BBE, #B6D2E7, #F5B400);
}
Blue San Juan color palette created on .