/* CSS */
.color-1 {
color: #D6006F;
}
.color-2 {
color: #FF6D1F;
}
.color-3 {
color: #FFAF38;
}
.color-4 {
color: #FFD900;
}
.color-5 {
color: #FFF5B3;
}
/* CSS Variables */
:root {
--color-1: #D6006F;
--color-2: #FF6D1F;
--color-3: #FFAF38;
--color-4: #FFD900;
--color-5: #FFF5B3;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D6006F, #FF6D1F, #FFAF38, #FFD900, #FFF5B3);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D6006F, #FF6D1F, #FFAF38, #FFD900, #FFF5B3);
}Pink Sunset color palette created on .