HEX: #001516
RGB: (0,21,22)
#001516 contains only green and blue colors. Web safe color of #001516 is #000000 (or #000).
#001516 color RGB value is (0,21,22).
RGB: (0,21,22) (0%,8%,9%)
R 0 of 255 = 0%
G 21 of 255 = 8%
B 22 of 255 = 9%
R + G + B ~ 6%. #001516 is dark color.
R + G + B =
0 + 21 + 22 = 43 (100%)
R 0 of 43 ~ 0%
G 21 of 43 ~ 48.84%
B 22 of 43 ~ 51.16%
#001516 color CMYK value is (100,5,0,91).
CMYK: (100,5,0,91) C100M5Y0K91 (100%,5%,0%,91%) (1.00/0.05/0.00/0.91)
00 | 15 | 16 | |
---|---|---|---|
RGB | 0 | 21 | 22 |
HSL | 183° | 100.00% | 4.31% |
HSB/HSV | 183° | 100.00% | 8.63% |
CMYK | 100.00% | 4.55% | 0.00% |
91.37% |
HEX | 00 | 15 | 16 |
Decimal | 0 | 21 | 22 |
Binary | 0 | 10101 | 10110 |
Octal | 0 | 25 | 26 |
Examples of css and html codes for elements with #001516 color. Also use rgb(0,21,22) instead hex code.
.myTextColor { color: #001516; }
<p style="color:#001516">This sample text font color is #001516.</p>
This text font color is #001516.
.myBgColor { background-color: #001516; }
<div style="background-color:#001516">Inner text</div>
This div background color is #001516.
.myBorderColor { border: 1px solid #001516; }
<div style="border:3px solid #001516">Div</div>
This div border color is #001516.
.myOpacity80 { color: #001516; opacity: 0.8; }
<p style="color:#001516;opacity:0.8;">80%</p>
Text with #001516 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #001516;}
<p style="text-shadow: 3px 3px 1px #001516">Text here.</p>
This text has shadow with #001516 color.
.textShadow {text-shadow: 3px 3px 1px #001516, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #001516, 5px 5px 20px red">Text here.</p>
This text has shadow with #001516 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#001516, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#001516, Direction=45, Strength=4)">Text</p>
This text has shadow with #001516 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #001516; -webkit-box-shadow: 1px 1px 3px 2px #001516; box-shadow: 1px 1px 3px 2px #001516; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #001516; -webkit-box-shadow: 1px 1px 3px 2px #001516; box-shadow:1px 1px 3px 2px #001516;">
Div content here</div>
This text has color #001516 on black background.
This text has color #001516 on white background.
This text has black color on #001516 background.
This text has white color on #001516 background.