/* CSS */
.color-1 {
color: #D85D3B;
}
.color-2 {
color: #F9A65D;
}
.color-3 {
color: #F4E0A4;
}
.color-4 {
color: #F7D49C;
}
.color-5 {
color: #5D403C;
}
/* CSS Variables */
:root {
--color-1: #D85D3B;
--color-2: #F9A65D;
--color-3: #F4E0A4;
--color-4: #F7D49C;
--color-5: #5D403C;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D85D3B, #F9A65D, #F4E0A4, #F7D49C, #5D403C);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D85D3B, #F9A65D, #F4E0A4, #F7D49C, #5D403C);
}
Warm Orange color palette created on .