HEX, RGB and HSL
All three describe the same colour; they differ in what they make easy.
| Format | Looks like | Best for |
|---|---|---|
| HEX | #0ea5e9 | CSS, design tools, brand documents — the most portable form |
| RGB | rgb(14, 165, 233) | Code that manipulates channels, and anywhere you need to add transparency |
| HSL | hsl(199, 89%, 48%) | Adjusting by hand — change lightness alone and the hue stays put |