Pink Apple Color Palette CSS
/* CSS */
.color-1 {
color: #F0EAD6;
}
.color-2 {
color: #B8D5C2;
}
.color-3 {
color: #9FE5D7;
}
.color-4 {
color: #F2A6B5;
}
.color-5 {
color: #F7696B;
}
/* CSS Variables */
:root {
--color-1: #F0EAD6;
--color-2: #B8D5C2;
--color-3: #9FE5D7;
--color-4: #F2A6B5;
--color-5: #F7696B;
}
Pink Apple Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0EAD6, #B8D5C2, #9FE5D7, #F2A6B5, #F7696B);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0EAD6, #B8D5C2, #9FE5D7, #F2A6B5, #F7696B);
}
Pink Apple color palette created on .
2 views