You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.my-class {
/* hue formats in angles */color: hsl(3rad, 28%, 84%); // hue in radiants (rad)color: hsl(-21grad, 28%, 84%); // hue in degrees (grad)color: hsl(0.75turn, 28%, 84%, .5); // hue in turns (turn)/* opacity or absence of opacity: hsla() is an alias for hsl() */color: hsl(222, 28%, 84%, .5); // hsl() accepts opacitycolor: hsla(222, 28%, 84%); // hsla() is valid without opacity/* space as separator */color: hsl(22228%84%); // coma isn’t the only valid separatorcolor: hsla(22228%84%/.5); // when space is separator, opacity is behind `/`
}
I’d love if ColorHighlight could implement all of these. I have no Python knowledge, so unfortunately I can’t help with the implementation.
Hi!
hsl()
andhsla()
are very permissive. Here are all the formats allowed and their current support in this wonderful ❤️ ColorHighlight plugin.Supported
Not supported
I’d love if ColorHighlight could implement all of these. I have no Python knowledge, so unfortunately I can’t help with the implementation.
Resources
The text was updated successfully, but these errors were encountered: