English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Color is composed of red (R), green (G), and blue (B). The hexadecimal notation is # followed by three or six hexadecimal characters.
Color values are represented by hexadecimal to indicate red, green, and blue (RGB).
The lowest value for each color is 0 (hexadecimal is 00), and the highest value is 255(Hexadecimal is FF).
The hexadecimal notation is written as # followed by three or six hexadecimal characters.
The three-digit notation is: #RGB, which converts to6The number is represented as: #RRGGBB.
Color | 3Hexadecimal color value | 6Hexadecimal color value | RGB |
#000 | #000000 | rgb(0,0,0) | |
#F00 | #FF0000 | rgb(255,0,0) | |
#0F0 | #00FF00 | rgb(0,255,0) | |
#00F | #0000FF | rgb(0,0,255) | |
#FF0 | #FFFF00 | rgb(255,255,0) | |
#0FF | #00FFFF | rgb(0,255,255) | |
#F0F | #FF00FF | rgb(255,0,255) | |
#888 | #888888 | rgb(136,136,136) | |
#FFF | #FFFFFF | rgb(255,255,255) |
View the color list sorted by color name