/* CSS */
.color-1 {
color: #4B91E2;
}
.color-2 {
color: #4FB3E8;
}
.color-3 {
color: #78D3E3;
}
.color-4 {
color: #A0E4D8;
}
.color-5 {
color: #E4F6E8;
}
/* CSS Variables */
:root {
--color-1: #4B91E2;
--color-2: #4FB3E8;
--color-3: #78D3E3;
--color-4: #A0E4D8;
--color-5: #E4F6E8;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4B91E2, #4FB3E8, #78D3E3, #A0E4D8, #E4F6E8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4B91E2, #4FB3E8, #78D3E3, #A0E4D8, #E4F6E8);
}
Blue James color palette created on .