Web-Safe Colors
Web-safe colors also known as the web-safe color palette, browser-safe colors, browser-safe palette, Netscape palette, 216 palette, Web palette, color map, and the 6x6x6 color cube, all the names describe the same set of colors. The web-safe colors are the colors that should not dither on computer display systems that can only display 256 colors also known as 8-bit color, and will display the same on both Macintosh (MAC) and (PC) computers. Now to complicate things even more browsers, in order to to run quicker, will only show a specific set of 256 colors on 8-bit color monitors. And if that browser has to show a color that's out of it's range. The browser will only have two choices, the first choice is that the browser can either mix two colors to create the missing color which is also known as dithering, or the other choice is that the browser can also find the closest matching color within the specific set of the 256 colors which can be a close match or a way off the mark match that we should not speak of.
Out of the 256 colors in an 8-bit color system there are actually only 216 color values that are considered to be web-safe colors that can be shown without dithering. The number 216 was selected because it allows exactly six shades of each color which is red, green and blue, which when multiplied by each other equals exactly 216 as in the following example (6 x 6 x 6 = 216). Also because the remaining 40 colors vary on MAC's and PC's.
Now the web-safe colors do have color names but most of the color names are taken from the extended color names list and most of the colored names are not listed in the standard web-safe color map as a result the browser will mix two colors to create a close match for the missing color name which is also known as dithering, or the other choice is that the browser can also find the closest matching color within the specific set of the 256 colors which can be a close match or a way off the mark match that we should not speak of again. Though colored names are easy to use they are not the most reliable way to display color for this reason I will leave out the color name values for each web-safe color. I will list all the color names in a future tutorial though. Now each web-safe color can also be displayed in hexadecimal notation, short hex notation, rgb percentage notation as well as rgb integer-triplet notation. I will show you all 216 web-safe colors as well as all there color values minus color names in a chart later in this tutorial. But first let me show you how to check to see if your color is a web-safe color.
Now to see if your color is web safe, there is a couple of ways to find out depending on which notation you are using. For instance when using RGB percentage notation the value should either be 0% or a number that is divisible by 20, so the values that are allowed will be 0%, 20%, 40%, 60%, 80% and 100%, an example will be rgb(20%,100%,80%).
If you use RGB integer-triplet notation your values should either be 0 or a number that is divisible by 51, so the allowed values would be 0, 51, 102, 153, 204 and 255, an example of this would be rgb(102,0,255).
With hexadecimal notation any of the color values that are 00, 33, 66, 99, cc and ff are considered to be web-safe, an example of this is #6600cc. This also means that the shorthand hex values can also be used. The web-safe values would be as follows 0, 3, 6, 9, c and f, an example of a short hex value would be #c36.
Now let me show you the 216 web-safe colors and there values minus there colored name values which I will display in future tutorial.
| Hexadecimal | Percentage | Integer | Short Hex |
| #ffffff | rgb(100%,100%,100%) | rgb(255,255,255) | #fff |
| #ffccff | rgb(100%,80%,100%) | rgb(255,204,255) | #fcf |
| #ff99ff | rgb(100%,60%,100%) | rgb(255,153,255) | #f9f |
| #ff66ff | rgb(100%,40%,100%) | rgb(255,102,255) | #f6f |
| #ff33ff | rgb(100%,20%,100%) | rgb(255,51,255) | #f3f |
| #ff00ff | rgb(100%,0%,100%) | rgb(255,0,255) | #f0f |
| #ffffcc | rgb(100%,100%,80%) | rgb(255,255,204) | #ffc |
| #ffcccc | rgb(100%,80%,80%) | rgb(255,204,204) | #fcc |
| #ff99cc | rgb(100%,60%,80%) | rgb(255,153,204) | #f9c |
| #ff66cc | rgb(100%,40%,80%) | rgb(255,102,204) | #f6c |
| #ff33cc | rgb(100%,20%,80%) | rgb(255,51,204) | #f3c |
| #ff00cc | rgb(100%,0%,80%) | rgb(255,0,204) | #f0c |
| #ffff99 | rgb(100%,100%,60%) | rgb(255,255,153) | #ff9 |
| #ffcc99 | rgb(100%,80%,60%) | rgb(255,204,153) | #fc9 |
| #ff9999 | rgb(100%,60%,60%) | rgb(255,153,153) | #f99 |
| #ff6699 | rgb(100%,40%,60%) | rgb(255,102,153) | #f69 |
| #ff3399 | rgb(100%,20%,60%) | rgb(255,51,153) | #f39 |
| #ff0099 | rgb(100%,0%,60%) | rgb(255,0,153) | #f09 |
| #ffff66 | rgb(100%,100%,40%) | rgb(255,255,102) | #ff6 |
| #ffcc66 | rgb(100%,80%,40%) | rgb(255,204,102) | #fc6 |
| #ff9966 | rgb(100%,60%,40%) | rgb(255,153,102) | #f96 |
| #ff6666 | rgb(100%,40%,40%) | rgb(255,102,102) | #f66 |
| #ff3366 | rgb(100%,20%,40%) | rgb(255,51,102) | #f36 |
| #ff0066 | rgb(100%,0%,40%) | rgb(255,0,102) | #f06 |
| #ffff33 | rgb(100%,100%,20%) | rgb(255,255,51) | #ff3 |
| #ffcc33 | rgb(100%,80%,20%) | rgb(255,204,51) | #fc3 |
| #ff9933 | rgb(100%,60%,20%) | rgb(255,153,51) | #f93 |
| #ff6633 | rgb(100%,40%,20%) | rgb(255,102,51) | #f63 |
| #ff3333 | rgb(100%,20%,20%) | rgb(255,51,51) | #f33 |
| #ff0033 | rgb(100%,0%,20%) | rgb(255,0,51) | #f03 |
| #ffff00 | rgb(100%,100%,0%) | rgb(255,255,0) | #ff0 |
| #ffcc00 | rgb(100%,80%,0%) | rgb(255,204,0) | #fc0 |
| #ff9900 | rgb(100%,60%,0%) | rgb(255,153,0) | #f90 |
| #ff6600 | rgb(100%,40%,0%) | rgb(255,102,0) | #f60 |
| #ff3300 | rgb(100%,20%,0%) | rgb(255,51,0) | #f30 |
| #ff0000 | rgb(100%,0%,0%) | rgb(255,0,0) | #f00 |
| #ccffff | rgb(80%,100%,100%) | rgb(204,255,255) | #cff |
| #ccccff | rgb(80%,80%,100%) | rgb(204,204,255) | #ccf |
| #cc99ff | rgb(80%,60%,100%) | rgb(204,153,255) | #c9f |
| #cc66ff | rgb(80%,40%,100%) | rgb(204,102,255) | #c6f |
| #cc33ff | rgb(80%,20%,100%) | rgb(204,51,255) | #c3f |
| #cc00ff | rgb(80%,0%,100%) | rgb(204,0,255) | #c0f |
| #ccffcc | rgb(80%,100%,80%) | rgb(204,255,204) | #cfc |
| #cccccc | rgb(80%,80%,80%) | rgb(204,204,204) | #ccc |
| #cc99cc | rgb(80%,60%,80%) | rgb(204,153,204) | #c9c |
| #cc66cc | rgb(80%,40%,80%) | rgb(204,102,204) | #c6c |
| #cc33cc | rgb(80%,20%,80%) | rgb(204,51,204) | #c3c |
| #cc00cc | rgb(80%,0%,80%) | rgb(204,0,204) | #c0c |
| #ccff99 | rgb(80%,100%,60%) | rgb(204,255,153) | #cf9 |
| #cccc99 | rgb(80%,80%,60%) | rgb(204,204,153) | #cc9 |
| #cc9999 | rgb(80%,60%,60%) | rgb(204,153,153) | #c99 |
| #cc6699 | rgb(80%,40%,60%) | rgb(204,102,153) | #c69 |
| #cc3399 | rgb(80%,20%,60%) | rgb(204,51,153) | #c39 |
| #cc0099 | rgb(80%,0%,60%) | rgb(204,0,153) | #c09 |
| #ccff66 | rgb(80%,100%,40%) | rgb(204,255,102) | #cf6 |
| #cccc66 | rgb(80%,80%,40%) | rgb(204,204,102) | #cc6 |
| #cc9966 | rgb(80%,60%,40%) | rgb(204,153,102) | #c96 |
| #cc6666 | rgb(80%,40%,40%) | rgb(204,102,102) | #c66 |
| #cc3366 | rgb(80%,20%,40%) | rgb(204,51,102) | #c36 |
| #cc0066 | rgb(80%,0%,40%) | rgb(204,0,102) | #c06 |
| #ccff33 | rgb(80%,100%,20%) | rgb(204,255,51) | #cf3 |
| #cccc33 | rgb(80%,80%,20%) | rgb(204,204,51) | #cc3 |
| #cc9933 | rgb(80%,60%,20%) | rgb(204,153,51) | #c93 |
| #cc6633 | rgb(80%,40%,20%) | rgb(204,102,51) | #c63 |
| #cc3333 | rgb(80%,20%,20%) | rgb(204,51,51) | #c33 |
| #cc0033 | rgb(80%,0%,20%) | rgb(204,0,51) | #c03 |
| #ccff00 | rgb(80%,100%,0%) | rgb(204,255,0) | #cf0 |
| #cccc00 | rgb(80%,80%,0%) | rgb(204,204,0) | #cc0 |
| #cc9900 | rgb(80%,60%,0%) | rgb(204,153,0) | #c90 |
| #cc6600 | rgb(80%,40%,0%) | rgb(204,102,0) | #c60 |
| #cc3300 | rgb(80%,20%,0%) | rgb(204,51,0) | #c30 |
| #cc0000 | rgb(80%,0%,0%) | rgb(204,0,0) | #c00 |
| #99ffff | rgb(60%,100%,100%) | rgb(153,255,255) | #9ff |
| #99ccff | rgb(60%,80%,100%) | rgb(153,204,255) | #9cf |
| #9999ff | rgb(60%,60%,100%) | rgb(153,153,255) | #99f |
| #9966ff | rgb(60%,40%,100%) | rgb(153,102,255) | #96f |
| #9933ff | rgb(60%,20%,100%) | rgb(153,51,255) | #93f |
| #9900ff | rgb(60%,0%,100%) | rgb(153,0,255) | #90f |
| #99ffcc | rgb(60%,100%,80%) | rgb(153,255,204) | #9fc |
| #99cccc | rgb(60%,80%,80%) | rgb(153,204,204) | #9cc |
| #9999cc | rgb(60%,60%,80%) | rgb(153,153,204) | #99c |
| #9966cc | rgb(60%,40%,80%) | rgb(153,102,204) | #96c |
| #9933cc | rgb(60%,20%,80%) | rgb(153,51,204) | #93c |
| #9900cc | rgb(60%,0%,80%) | rgb(153,0,204) | #90c |
| #99ff99 | rgb(60%,100%,60%) | rgb(153,255,153) | #9f9 |
| #99cc99 | rgb(60%,80%,60%) | rgb(153,204,153) | #9c9 |
| #999999 | rgb(60%,60%,60%) | rgb(153,153,153) | #999 |
| #996699 | rgb(60%,40%,60%) | rgb(153,102,153) | #969 |
| #993399 | rgb(60%,20%,60%) | rgb(153,51,153) | #939 |
| #990099 | rgb(60%,0%,60%) | rgb(153,0,153) | #909 |
| #99ff66 | rgb(60%,100%,40%) | rgb(153,255,102) | #9f6 |
| #99cc66 | rgb(60%,80%,40%) | rgb(153,204,102) | #9c6 |
| #999966 | rgb(60%,60%,40%) | rgb(153,153,102) | #996 |
| #996666 | rgb(60%,40%,40%) | rgb(153,102,102) | #966 |
| #993366 | rgb(60%,20%,40%) | rgb(153,51,102) | #936 |
| #990066 | rgb(60%,0%,40%) | rgb(153,0,102) | #906 |
| #99ff33 | rgb(60%,100%,20%) | rgb(153,255,51) | #9f3 |
| #99cc33 | rgb(60%,80%,20%) | rgb(153,204,51) | #9c3 |
| #999933 | rgb(60%,60%,20%) | rgb(153,153,51) | #993 |
| #996633 | rgb(60%,40%,20%) | rgb(153,102,51) | #963 |
| #993333 | rgb(60%,20%,20%) | rgb(153,51,51) | #933 |
| #990033 | rgb(60%,0%,20%) | rgb(153,0,51) | #903 |
| #99ff00 | rgb(60%,100%,0%) | rgb(153,255,0) | #9f0 |
| #99cc00 | rgb(60%,80%,0%) | rgb(153,204,0) | #9c0 |
| #999900 | rgb(60%,60%,0%) | rgb(153,153,0) | #990 |
| #996600 | rgb(60%,40%,0%) | rgb(153,102,0) | #960 |
| #993300 | rgb(60%,20%,0%) | rgb(153,51,0) | #930 |
| #990000 | rgb(60%,0%,0%) | rgb(153,0,0) | #900 |
| #66ffff | rgb(40%,100%,100%) | rgb(102,255,255) | #6ff |
| #66ccff | rgb(40%,80%,100%) | rgb(102,204,255) | #6cf |
| #6699ff | rgb(40%,60%,100%) | rgb(102,153,255) | #69f |
| #6666ff | rgb(40%,40%,100%) | rgb(102,102,255) | #66f |
| #6633ff | rgb(40%,20%,100%) | rgb(102,51,255) | #63f |
| #6600ff | rgb(40%,0%,100%) | rgb(102,0,255) | #60f |
| #66ffcc | rgb(40%,100%,80%) | rgb(102,255,204) | #6fc |
| #66cccc | rgb(40%,80%,80%) | rgb(102,204,204) | #6cc |
| #6699cc | rgb(40%,60%,80%) | rgb(102,153,204) | #69c |
| #6666cc | rgb(40%,40%,80%) | rgb(102,102,204) | #66c |
| #6633cc | rgb(40%,20%,80%) | rgb(102,51,204) | #63c |
| #6600cc | rgb(40%,0%,80%) | rgb(102,0,204) | #60c |
| #66ff99 | rgb(40%,100%,60%) | rgb(102,255,153) | #6f9 |
| #66cc99 | rgb(40%,80%,60%) | rgb(102,204,153) | #6c9 |
| #669999 | rgb(40%,60%,60%) | rgb(102,153,153) | #699 |
| #666699 | rgb(40%,40%,60%) | rgb(102,102,153) | #669 |
| #663399 | rgb(40%,20%,60%) | rgb(102,51,153) | #639 |
| #660099 | rgb(40%,0%,60%) | rgb(102,0,153) | #609 |
| #66ff66 | rgb(40%,100%,40%) | rgb(102,255,102) | #6f6 |
| #66cc66 | rgb(40%,80%,40%) | rgb(102,204,102) | #6c6 |
| #669966 | rgb(40%,60%,40%) | rgb(102,153,102) | #696 |
| #666666 | rgb(40%,40%,40%) | rgb(102,102,102) | #666 |
| #663366 | rgb(40%,20%,40%) | rgb(102,51,102) | #636 |
| #660066 | rgb(40%,0%,40%) | rgb(102,0,102) | #606 |
| #66ff33 | rgb(40%,100%,20%) | rgb(102,255,51) | #6f3 |
| #66cc33 | rgb(40%,80%,20%) | rgb(102,204,51) | #6c3 |
| #669933 | rgb(40%,60%,20%) | rgb(102,153,51) | #693 |
| #666633 | rgb(40%,40%,20%) | rgb(102,102,51) | #663 |
| #663333 | rgb(40%,20%,20%) | rgb(102,51,51) | #633 |
| #660033 | rgb(40%,0%,20%) | rgb(102,0,51) | #603 |
| #66ff00 | rgb(40%,100%,0%) | rgb(102,255,0) | #6f0 |
| #66cc00 | rgb(40%,80%,0%) | rgb(102,204,0) | #6c0 |
| #669900 | rgb(40%,60%,0%) | rgb(102,153,0) | #690 |
| #666600 | rgb(40%,40%,0%) | rgb(102,102,0) | #660 |
| #663300 | rgb(40%,20%,0%) | rgb(102,51,0) | #630 |
| #660000 | rgb(40%,0%,0%) | rgb(102,0,0) | #600 |
| #33ffff | rgb(20%,100%,100%) | rgb(51,255,255) | #3ff |
| #33ccff | rgb(20%,80%,100%) | rgb(51,204,255) | #3cf |
| #3399ff | rgb(20%,60%,100%) | rgb(51,153,255) | #39f |
| #3366ff | rgb(20%,40%,100%) | rgb(51,102,255) | #36f |
| #3333ff | rgb(20%,20%,100%) | rgb(51,51,255) | #33f |
| #3300ff | rgb(20%,0%,100%) | rgb(51,0,255) | #30f |
| #33ffcc | rgb(20%,100%,80%) | rgb(51,255,204) | #3fc |
| #33cccc | rgb(20%,80%,80%) | rgb(51,204,204) | #3cc |
| #3399cc | rgb(20%,60%,80%) | rgb(51,153,204) | #39c |
| #3366cc | rgb(20%,40%,80%) | rgb(51,102,204) | #36c |
| #3333cc | rgb(20%,20%,80%) | rgb(51,51,204) | #33c |
| #3300cc | rgb(20%,0%,80%) | rgb(51,0,204) | #30c |
| #33ff99 | rgb(20%,100%,60%) | rgb(51,255,153) | #3f9 |
| #33cc99 | rgb(20%,80%,60%) | rgb(51,204,153) | #3c9 |
| #339999 | rgb(20%,60%,60%) | rgb(51,153,153) | #399 |
| #336699 | rgb(20%,40%,60%) | rgb(51,102,153) | #369 |
| #333399 | rgb(20%,20%,60%) | rgb(51,51,153) | #339 |
| #330099 | rgb(20%,0%,60%) | rgb(51,0,153) | #309 |
| #33ff66 | rgb(20%,100%,40%) | rgb(51,255,102) | #3f6 |
| #33cc66 | rgb(20%,80%,40%) | rgb(51,204,102) | #3c6 |
| #339966 | rgb(20%,60%,40%) | rgb(51,153,102) | #396 |
| #336666 | rgb(20%,40%,40%) | rgb(51,102,102) | #366 |
| #333366 | rgb(20%,20%,40%) | rgb(51,51,102) | #336 |
| #330066 | rgb(20%,0%,40%) | rgb(51,0,102) | #306 |
| #33ff33 | rgb(20%,100%,20%) | rgb(51,255,51) | #3f3 |
| #33cc33 | rgb(20%,80%,20%) | rgb(51,204,51) | #3c3 |
| #339933 | rgb(20%,60%,20%) | rgb(51,153,51) | #393 |
| #336633 | rgb(20%,40%,20%) | rgb(51,102,51) | #363 |
| #333333 | rgb(20%,20%,20%) | rgb(51,51,51) | #333 |
| #330033 | rgb(20%,0%,20%) | rgb(51,0,51) | #303 |
| #33ff00 | rgb(20%,100%,0%) | rgb(51,255,0) | #3f0 |
| #33cc00 | rgb(20%,80%,0%) | rgb(51,204,0) | #3c0 |
| #339900 | rgb(20%,60%,0%) | rgb(51,153,0) | #390 |
| #336600 | rgb(20%,40%,0%) | rgb(51,102,0) | #360 |
| #333300 | rgb(20%,20%,0%) | rgb(51,51,0) | #330 |
| #330000 | rgb(20%,0%,0%) | rgb(51,0,0) | #300 |
| #00ffff | rgb(0%,100%,100%) | rgb(0,255,255) | #0ff |
| #00ccff | rgb(0%,80%,100%) | rgb(0,204,255) | #0cf |
| #0099ff | rgb(0%,60%,100%) | rgb(0,153,255) | #09f |
| #0066ff | rgb(0%,40%,100%) | rgb(0,102,255) | #06f |
| #0033ff | rgb(0%,20%,100%) | rgb(0,51,255) | #03f |
| #0000ff | rgb(0%,0%,100%) | rgb(0,0,255) | #00f |
| #00ffcc | rgb(0%,100%,80%) | rgb(0,255,204) | #0fc |
| #00cccc | rgb(0%,80%,80%) | rgb(0,204,204) | #0cc |
| #0099cc | rgb(0%,60%,80%) | rgb(0,153,204) | #09c |
| #0066cc | rgb(0%,40%,80%) | rgb(0,102,204) | #06c |
| #0033cc | rgb(0%,20%,80%) | rgb(0,51,204) | #03c |
| #0000cc | rgb(0%,0%,80%) | rgb(0,0,204) | #00c |
| #00ff99 | rgb(0%,100%,60%) | rgb(0,255,153) | #0f9 |
| #00cc99 | rgb(0%,80%,60%) | rgb(0,204,153) | #0c9 |
| #009999 | rgb(0%,60%,60%) | rgb(0,153,153) | #099 |
| #006699 | rgb(0%,40%,60%) | rgb(0,102,153) | #069 |
| #003399 | rgb(0%,20%,60%) | rgb(0,51,153) | #039 |
| #000099 | rgb(0%,0%,60%) | rgb(0,0,153) | #009 |
| #00ff66 | rgb(0%,100%,40%) | rgb(0,255,102) | #0f6 |
| #00cc66 | rgb(0%,80%,40%) | rgb(0,204,102) | #0c6 |
| #009966 | rgb(0%,60%,40%) | rgb(0,153,102) | #096 |
| #006666 | rgb(0%,40%,40%) | rgb(0,102,102) | #066 |
| #003366 | rgb(0%,20%,40%) | rgb(0,51,102) | #036 |
| #000066 | rgb(0%,0%,40%) | rgb(0,0,202) | #006 |
| #00ff33 | rgb(0%,100%,20%) | rgb(0,255,51) | #0f3 |
| #00cc33 | rgb(0%,80%,20%) | rgb(0,204,51) | #0c3 |
| #009933 | rgb(0%,60%,20%) | rgb(0,153,51) | #093 |
| #006633 | rgb(0%,40%,20%) | rgb(0,102,51) | #063 |
| #003333 | rgb(0%,20%,20%) | rgb(0,51,51) | #033 |
| #000033 | rgb(0%,0%,20%) | rgb(0,0,51) | #003 |
| #00ff00 | rgb(0%,100%,0%) | rgb(0,255,0) | #0f0 |
| #00cc00 | rgb(0%,80%,0%) | rgb(0,204,0) | #0c0 |
| #009900 | rgb(0%,60%,0%) | rgb(0,153,0) | #090 |
| #006600 | rgb(0%,40%,0%) | rgb(0,102,0) | #060 |
| #003300 | rgb(0%,20%,0%) | rgb(0,51,0) | #030 |
| #000000 | rgb(0%,0%,0%) | rgb(0,0,0) | #000 |
Now there are also 22 really web-safe colors that have been discovered from the 216 web-safe colors that are reliably displayed on Windows (PC) and Macintosh (MAC), Internet Explorer (IE) and Netscape Navigator, 8-bit, 16-bit, and 24-bit display systems.
Now let me show you the 22 really web-safe colors.
| Hexadecimal | Percentage | Integer | Short Hex |
| #ffffff | rgb(100%,100%,100%) | rgb(255,255,255) | #fff |
| #00ffcc | rgb(0%,100%,80%) | rgb(0,255,204) | #0fc |
| #33ffcc | rgb(20%,100%,80%) | rgb(51,255,204) | #3fc |
| #00ffff | rgb(0%,100%,100%) | rgb(0,255,255) | #0ff |
| #33ffff | rgb(20%,100%,100%) | rgb(51,255,255) | #3ff |
| #66ffff | rgb(40%,100%,100%) | rgb(102,255,255) | #6ff |
| #00ff66 | rgb(0%,100%,40%) | rgb(0,255,102) | #0f6 |
| #33ff66 | rgb(20%,100%,40%) | rgb(51,255,102) | #3f6 |
| #33ff33 | rgb(20%,100%,20%) | rgb(51,255,51) | #3f3 |
| #66ff00 | rgb(40%,100%,0%) | rgb(102,255,0) | #6f0 |
| #66ff33 | rgb(40%,100%,20%) | rgb(102,255,51) | #6f3 |
| #00ff00 | rgb(0%,100%,0%) | rgb(0,255,0) | #0f0 |
| #ccff66 | rgb(80%,100%,40%) | rgb(204,255,102) | #cf6 |
| #ffff66 | rgb(100%,100%,40%) | rgb(255,255,102) | #ff6 |
| #ffff33 | rgb(100%,100%,20%) | rgb(255,255,51) | #ff3 |
| #ffff00 | rgb(100%,100%,0%) | rgb(255,255,0) | #ff0 |
| #ff00ff | rgb(100%,0%,100%) | rgb(255,0,255) | #f0f |
| #ff0000 | rgb(100%,0%,0%) | rgb(255,0,0) | #f00 |
| #ff0033 | rgb(100%,0%,20%) | rgb(255,0,51) | #f03 |
| #0000ff | rgb(0%,0%,100%) | rgb(0,0,255) | #00f |
| #000033 | rgb(0%,0%,20%) | rgb(0,0,51) | #003 |
| #000000 | rgb(0%,0%,0%) | rgb(0,0,0) | #000 |