<
CSS - Color values
color name |
| aqua | 00FFFF | |
| black | 000000 | |
| blue | 0000FF | |
| fuchsia | FF00FF | |
| gray | 808080 | |
| green | 008000 | |
| lime | 00FF00 | |
| maroon | 800000 | |
| navy | 000080 | |
| olive | 808080 | |
| purple | 800080 | |
| red | FF0000 | |
| silver | C0C0C0 | |
| teal | 008080 | |
| white | FFFFFF | |
| yellow | FFFF00 | |
|
| Numeric values |
| Hexadecimal Long Method | #RRGGBB | |
| Hexadecimal Short Method | #RGB | |
| Decimal Integer Method | rgb(x,x,x) | x is any integer from 0 to 255 |
It is recommended to use only browser safe colors
|
| Percentage Method |
| rgb(x%,x%,x%) | x is any value from 0 to 100 |
|
|
|