HTML Colors
Colors in HTML can be specified in several ways. They are used in inline styles, CSS, and various HTML attributes.
Color Formats
| Format | Example | Description |
|---|---|---|
| Color name | red | 140+ named colors |
| HEX | #FF0000 | 6 hex digits (RRGGBB) |
| RGB | rgb(255,0,0) | Red, Green, Blue values 0–255 |
| RGBA | rgba(255,0,0,0.5) | RGB + Alpha (opacity 0–1) |
| HSL | hsl(0,100%,50%) | Hue, Saturation, Lightness |
💡 HEX is the most common format for web development.