/* CSS */
.color-1 {
color: #FAA700;
}
.color-2 {
color: #F3D57C;
}
.color-3 {
color: #E6B54C;
}
.color-4 {
color: #D39E3C;
}
.color-5 {
color: #C57D2B;
}
/* CSS Variables */
:root {
--color-1: #FAA700;
--color-2: #F3D57C;
--color-3: #E6B54C;
--color-4: #D39E3C;
--color-5: #C57D2B;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FAA700, #F3D57C, #E6B54C, #D39E3C, #C57D2B);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FAA700, #F3D57C, #E6B54C, #D39E3C, #C57D2B);
}Golden Dandicus color palette created on .