/* CSS */
.color-1 {
color: #1F89E5;
}
.color-2 {
color: #4EB7E4;
}
.color-3 {
color: #76D6E5;
}
.color-4 {
color: #A1E3D2;
}
.color-5 {
color: #CFF2E4;
}
/* CSS Variables */
:root {
--color-1: #1F89E5;
--color-2: #4EB7E4;
--color-3: #76D6E5;
--color-4: #A1E3D2;
--color-5: #CFF2E4;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1F89E5, #4EB7E4, #76D6E5, #A1E3D2, #CFF2E4);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1F89E5, #4EB7E4, #76D6E5, #A1E3D2, #CFF2E4);
}
Blue Bloom color palette created on .