/* CSS */
.color-1 {
color: #F9D64E;
}
.color-2 {
color: #F6B83C;
}
.color-3 {
color: #EF882E;
}
.color-4 {
color: #E77E23;
}
.color-5 {
color: #D65C24;
}
/* CSS Variables */
:root {
--color-1: #F9D64E;
--color-2: #F6B83C;
--color-3: #EF882E;
--color-4: #E77E23;
--color-5: #D65C24;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F9D64E, #F6B83C, #EF882E, #E77E23, #D65C24);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F9D64E, #F6B83C, #EF882E, #E77E23, #D65C24);
}
Golden Harvest color palette created on .