Color Formats
HC · Colors & Backgroundssyntax
color: #rrggbb | #rgb | rgb(r g b) | hsl(h s l) | oklch(L C H);example
.text-hex { color: #1e293b; }
.text-rgb { color: rgb(30 41 59); }
.text-hsl { color: hsl(215 28% 17%); }
.text-oklch { color: oklch(0.35 0.05 260); }
/* With alpha (transparency) */
.overlay { background: rgb(0 0 0 / 0.5); }
.tint { background: hsl(210 100% 50% / 0.1); }Note Modern CSS uses space-separated values with a slash for alpha: rgb(255 0 0 / 0.5). The older comma syntax still works but is being phased out. oklch provides perceptually uniform colors, so adjusting lightness produces visually consistent results across hues.