> [!tldr] HSL, RGB, Hex
```css
.coarse-hex-example{
color: #DAE;
}
.fine-hex-example{
color: #cc99d9;
}
.rgb-example{
color: rgb(204, 153, 217);
}
.hsl-example{
color: hsl(288, 46%, 73%)
}
.weird-ones{
color: hwb(288, 60%, 15%); /* Hue, Whiteness, Blackness */
color: lab(69.92% 30.09 -25.23); /* lightness, A(green-red axis), B(blue-yellow) */
color: lch(69.92% 39.27 320.02); /* lightness, Chroma, Hue */
color: oklab(75.253% 0.07995 -0.06875);
color: oklch(75.253% 0.10545 319.307);
}
```
Looks like LAB colors use [[Organizing Colors#"Opponent Process" and "Natural Color System"]]. Neat.
****
# More
- [[Color Index]]
## Source
- looking in [[VS Code]]