/* CSS */
.color-1 {
color: #F2A1C5;
}
.color-2 {
color: #E9B4D4;
}
.color-3 {
color: #D6C7E1;
}
.color-4 {
color: #B3D2E0;
}
.color-5 {
color: #7DC5D4;
}
/* CSS Variables */
:root {
--color-1: #F2A1C5;
--color-2: #E9B4D4;
--color-3: #D6C7E1;
--color-4: #B3D2E0;
--color-5: #7DC5D4;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F2A1C5, #E9B4D4, #D6C7E1, #B3D2E0, #7DC5D4);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F2A1C5, #E9B4D4, #D6C7E1, #B3D2E0, #7DC5D4);
}
Pink Lily color palette created on .