Can specific values be adjusted using hsl
? Such as changing saturation or lightness while keeping the hue constant?
.red {
background-color: #ff0000; /* or, hsl(0,100%,50%); */
}
.red-dark { // Increase saturation by +10% and decrease lightness by -15%
background-color: hsl(, +10%, -15%);
}