HEX: #00110D
RGB: (0,17,13)
#00110D contains only green and blue colors. Web safe color of #00110D is #000000 (or #000).
#00110D color RGB value is (0,17,13).
RGB: (0,17,13) (0%,7%,5%)
R 0 of 255 = 0%
G 17 of 255 = 7%
B 13 of 255 = 5%
R + G + B ~ 4%. #00110D is dark color.
R + G + B =
0 + 17 + 13 = 30 (100%)
R 0 of 30 ~ 0%
G 17 of 30 ~ 56.67%
B 13 of 30 ~ 43.33%
#00110D color CMYK value is (100,0,24,93).
CMYK: (100,0,24,93) C100M0Y24K93 (100%,0%,24%,93%) (1.00/0.00/0.24/0.93)
00 | 11 | 0D | |
---|---|---|---|
RGB | 0 | 17 | 13 |
HSL | 166° | 100.00% | 3.33% |
HSB/HSV | 166° | 100.00% | 6.67% |
CMYK | 100.00% | 0.00% | 23.53% |
93.33% |
HEX | 00 | 11 | 0D |
Decimal | 0 | 17 | 13 |
Binary | 0 | 10001 | 1101 |
Octal | 0 | 21 | 15 |
Examples of css and html codes for elements with #00110D color. Also use rgb(0,17,13) instead hex code.
.myTextColor { color: #00110D; }
<p style="color:#00110D">This sample text font color is #00110D.</p>
This text font color is #00110D.
.myBgColor { background-color: #00110D; }
<div style="background-color:#00110D">Inner text</div>
This div background color is #00110D.
.myBorderColor { border: 1px solid #00110D; }
<div style="border:3px solid #00110D">Div</div>
This div border color is #00110D.
.myOpacity80 { color: #00110D; opacity: 0.8; }
<p style="color:#00110D;opacity:0.8;">80%</p>
Text with #00110D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00110D;}
<p style="text-shadow: 3px 3px 1px #00110D">Text here.</p>
This text has shadow with #00110D color.
.textShadow {text-shadow: 3px 3px 1px #00110D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00110D, 5px 5px 20px red">Text here.</p>
This text has shadow with #00110D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00110D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00110D, Direction=45, Strength=4)">Text</p>
This text has shadow with #00110D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00110D; -webkit-box-shadow: 1px 1px 3px 2px #00110D; box-shadow: 1px 1px 3px 2px #00110D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00110D; -webkit-box-shadow: 1px 1px 3px 2px #00110D; box-shadow:1px 1px 3px 2px #00110D;">
Div content here</div>
This text has color #00110D on black background.
This text has color #00110D on white background.
This text has black color on #00110D background.
This text has white color on #00110D background.