/* CSS */
.color-1 {
color: #1E396B;
}
.color-2 {
color: #3B5A8C;
}
.color-3 {
color: #7D9CB5;
}
.color-4 {
color: #B3D5E0;
}
.color-5 {
color: #F5A300;
}
/* CSS Variables */
:root {
--color-1: #1E396B;
--color-2: #3B5A8C;
--color-3: #7D9CB5;
--color-4: #B3D5E0;
--color-5: #F5A300;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1E396B, #3B5A8C, #7D9CB5, #B3D5E0, #F5A300);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1E396B, #3B5A8C, #7D9CB5, #B3D5E0, #F5A300);
}