- Why use named colors?
- Quick prototyping, readable code, and legacy compatibility. `color: tomato` is more memorable than `#FF6347` for exploration.
- Are the names standardized?
- Yes — CSS Color Module. 147 names, supported by all browsers. Named colors don't change their definition across browser versions.
- Which is the most-used named color?
- No hard data, but `white`, `black`, `red`, `blue`, `gray` dominate in production CSS. The exotic ones (mediumaquamarine, palegoldenrod) are rarely seen.
- Can I add custom names?
- In CSS, no — named colors are fixed. For project-specific names use CSS custom properties: `--brand-tomato: #ff6347;`.