/* CSS */
.color-1 {
color: #E7B36E;
}
.color-2 {
color: #C9A66E;
}
.color-3 {
color: #8D6F4E;
}
.color-4 {
color: #5C3E3D;
}
.color-5 {
color: #392A28;
}
/* CSS Variables */
:root {
--color-1: #E7B36E;
--color-2: #C9A66E;
--color-3: #8D6F4E;
--color-4: #5C3E3D;
--color-5: #392A28;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #E7B36E, #C9A66E, #8D6F4E, #5C3E3D, #392A28);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #E7B36E, #C9A66E, #8D6F4E, #5C3E3D, #392A28);
}
Brown Carpenter color palette created on .