/* CSS */
.color-1 {
color: #DEB41B;
}
.color-2 {
color: #8E5C33;
}
.color-3 {
color: #F3E0C3;
}
.color-4 {
color: #944A3D;
}
.color-5 {
color: #5B3A29;
}
/* CSS Variables */
:root {
--color-1: #DEB41B;
--color-2: #8E5C33;
--color-3: #F3E0C3;
--color-4: #944A3D;
--color-5: #5B3A29;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #DEB41B, #8E5C33, #F3E0C3, #944A3D, #5B3A29);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #DEB41B, #8E5C33, #F3E0C3, #944A3D, #5B3A29);
}Brewed Harmony color palette created on .