Results 5 comments of Joe Love

RGB has 3 color channels. each channel has 1 byte stored in memory. HSL/HSV has 3 channels storing the same information. Each channel is a REAL (not integer) number. If...

Do you mean hsla? It does support hsla.

Behind the scenes, to lighten or darken, tinycolor simply converts colors to HSL, then adds whatever number passed in to lighten() to the L value of the HSL. For example,...