/* CSS */
.color-1 {
color: #4D3D0A;
}
.color-2 {
color: #7A6E3E;
}
.color-3 {
color: #D1C27B;
}
.color-4 {
color: #E5A66C;
}
.color-5 {
color: #D86131;
}
/* CSS Variables */
:root {
--color-1: #4D3D0A;
--color-2: #7A6E3E;
--color-3: #D1C27B;
--color-4: #E5A66C;
--color-5: #D86131;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4D3D0A, #7A6E3E, #D1C27B, #E5A66C, #D86131);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4D3D0A, #7A6E3E, #D1C27B, #E5A66C, #D86131);
}
Hawk's Embrace color palette created on .