CSS ⟩ values ⟩ colors
Color Hunt
hhhue - color palettes
new syntax
no commas between the numbers.
alpha value separated with a slash.
rgba() and hsla() no longer necessary.
rgba()
hsla()
/* 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)
HSL
CSS ⟩ <color value>
gradients - need to define gradient colors with CSS colors.
SVG ⟩ Attributes (fill, stroke)
<canvas> ⟩ colors
Last updated 3 days ago