HEX: #00120E
RGB: (0,18,14)
#00120E contains only green and blue colors. Web safe color of #00120E is #000000 (or #000).
#00120E color RGB value is (0,18,14).
RGB: (0,18,14) (0%,7%,5%)
R 0 of 255 = 0%
G 18 of 255 = 7%
B 14 of 255 = 5%
R + G + B ~ 4%. #00120E is dark color.
R + G + B =
0 + 18 + 14 = 32 (100%)
R 0 of 32 ~ 0%
G 18 of 32 ~ 56.25%
B 14 of 32 ~ 43.75%
#00120E color CMYK value is (100,0,22,93).
CMYK: (100,0,22,93) C100M0Y22K93 (100%,0%,22%,93%) (1.00/0.00/0.22/0.93)
00 | 12 | 0E | |
---|---|---|---|
RGB | 0 | 18 | 14 |
HSL | 167° | 100.00% | 3.53% |
HSB/HSV | 167° | 100.00% | 7.06% |
CMYK | 100.00% | 0.00% | 22.22% |
92.94% |
HEX | 00 | 12 | 0E |
Decimal | 0 | 18 | 14 |
Binary | 0 | 10010 | 1110 |
Octal | 0 | 22 | 16 |
Examples of css and html codes for elements with #00120E color. Also use rgb(0,18,14) instead hex code.
.myTextColor { color: #00120E; }
<p style="color:#00120E">This sample text font color is #00120E.</p>
This text font color is #00120E.
.myBgColor { background-color: #00120E; }
<div style="background-color:#00120E">Inner text</div>
This div background color is #00120E.
.myBorderColor { border: 1px solid #00120E; }
<div style="border:3px solid #00120E">Div</div>
This div border color is #00120E.
.myOpacity80 { color: #00120E; opacity: 0.8; }
<p style="color:#00120E;opacity:0.8;">80%</p>
Text with #00120E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00120E;}
<p style="text-shadow: 3px 3px 1px #00120E">Text here.</p>
This text has shadow with #00120E color.
.textShadow {text-shadow: 3px 3px 1px #00120E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00120E, 5px 5px 20px red">Text here.</p>
This text has shadow with #00120E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00120E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00120E, Direction=45, Strength=4)">Text</p>
This text has shadow with #00120E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00120E; -webkit-box-shadow: 1px 1px 3px 2px #00120E; box-shadow: 1px 1px 3px 2px #00120E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00120E; -webkit-box-shadow: 1px 1px 3px 2px #00120E; box-shadow:1px 1px 3px 2px #00120E;">
Div content here</div>
This text has color #00120E on black background.
This text has color #00120E on white background.
This text has black color on #00120E background.
This text has white color on #00120E background.