🔰colors
hhhue - color palettes
new syntax
no commas between the numbers.
alpha value separated with a slash.
rgba()andhsla()no longer necessary.
/* old syntax             new syntax             */
/* --------------------------------------------- */
rgb(0, 0, 0)              rgb(0 0 0)
rgba(255, 0, 0, 0.5)      rgb(255 0 0 / 0.5)    /* #FF00007F */
hsl(120, 50%, 50%)        hsl(120 50% 50%)
hsla(120, 50%, 50%, 0.75) hsl(120 50% 50% / 0.75)gradients - need to define gradient colors with CSS colors.
SVG ⟩ Attributes (fill, stroke)
Last updated
Was this helpful?