/* CSS */
.color-1 {
color: #F5E1B2;
}
.color-2 {
color: #E1C7A8;
}
.color-3 {
color: #D0B49A;
}
.color-4 {
color: #C3A28D;
}
.color-5 {
color: #B5947D;
}
/* CSS Variables */
:root {
--color-1: #F5E1B2;
--color-2: #E1C7A8;
--color-3: #D0B49A;
--color-4: #C3A28D;
--color-5: #B5947D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F5E1B2, #E1C7A8, #D0B49A, #C3A28D, #B5947D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F5E1B2, #E1C7A8, #D0B49A, #C3A28D, #B5947D);
}
Beige Beauty color palette created on .