/* CSS */
.color-1 {
color: #1F8FFF;
}
.color-2 {
color: #4DB8FF;
}
.color-3 {
color: #85CDFA;
}
.color-4 {
color: #F5A524;
}
.color-5 {
color: #FF6E61;
}
/* CSS Variables */
:root {
--color-1: #1F8FFF;
--color-2: #4DB8FF;
--color-3: #85CDFA;
--color-4: #F5A524;
--color-5: #FF6E61;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1F8FFF, #4DB8FF, #85CDFA, #F5A524, #FF6E61);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1F8FFF, #4DB8FF, #85CDFA, #F5A524, #FF6E61);
}
Blue Brandeis color palette created on .