| Color Name Keywords |
color: ... ; |
- Sets color property values
|
| rgb Colors |
colors: rgb(..., ..., ...); |
- Supplied with three values representing red, green & blue
- Values range from 0 to 255
|
| Hexadecimal Colors |
color: #...... ; |
- Composed of 6 hex-characters
- Each group of two represents a value between 0 and 255 for red, green, or blue
|
| HSL Colors |
color: hsl(..., ...%, ...%) ; |
- Contains values hue, saturation, & lightness respectively
- Hue ranges from 0 360, saturation & lightness are represented as percentages
|
| Alpha Values |
color: rgba(..., ..., ..., ...) ;
color: hsla(..., ...%, ...%, ...) ; |
- Determines transparency of colors
- Can be set for RGB and HSL colors by providing forth value
- Values range from 0 (invisible) to 1 (opaque)
|