/* CSS */
.color-1 {
color: #F2E2D4;
}
.color-2 {
color: #D1C4B8;
}
.color-3 {
color: #B4A59D;
}
.color-4 {
color: #8E705D;
}
.color-5 {
color: #5B4939;
}
/* CSS Variables */
:root {
--color-1: #F2E2D4;
--color-2: #D1C4B8;
--color-3: #B4A59D;
--color-4: #8E705D;
--color-5: #5B4939;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F2E2D4, #D1C4B8, #B4A59D, #8E705D, #5B4939);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F2E2D4, #D1C4B8, #B4A59D, #8E705D, #5B4939);
}
Brown Mystique color palette created on .