/* CSS */
.color-1 {
color: #F6B83C;
}
.color-2 {
color: #E7693C;
}
.color-3 {
color: #D95E74;
}
.color-4 {
color: #A45CB7;
}
.color-5 {
color: #5D6F8E;
}
/* CSS Variables */
:root {
--color-1: #F6B83C;
--color-2: #E7693C;
--color-3: #D95E74;
--color-4: #A45CB7;
--color-5: #5D6F8E;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F6B83C, #E7693C, #D95E74, #A45CB7, #5D6F8E);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F6B83C, #E7693C, #D95E74, #A45CB7, #5D6F8E);
}Sunset Hues color palette created on .