/* CSS */
.color-1 {
color: #1F8FFF;
}
.color-2 {
color: #4DB2FF;
}
.color-3 {
color: #80D2FF;
}
.color-4 {
color: #A8E1FF;
}
.color-5 {
color: #E0F7FF;
}
/* CSS Variables */
:root {
--color-1: #1F8FFF;
--color-2: #4DB2FF;
--color-3: #80D2FF;
--color-4: #A8E1FF;
--color-5: #E0F7FF;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1F8FFF, #4DB2FF, #80D2FF, #A8E1FF, #E0F7FF);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1F8FFF, #4DB2FF, #80D2FF, #A8E1FF, #E0F7FF);
}