/* CSS */
.color-1 {
color: #FFDEB3;
}
.color-2 {
color: #FFD3A3;
}
.color-3 {
color: #FF9999;
}
.color-4 {
color: #FF7092;
}
.color-5 {
color: #FF4D6D;
}
/* CSS Variables */
:root {
--color-1: #FFDEB3;
--color-2: #FFD3A3;
--color-3: #FF9999;
--color-4: #FF7092;
--color-5: #FF4D6D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FFDEB3, #FFD3A3, #FF9999, #FF7092, #FF4D6D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FFDEB3, #FFD3A3, #FF9999, #FF7092, #FF4D6D);
}
Pink Sunset color palette created on .