HEX: #00150D
RGB: (0,21,13)
#00150D contains only green and blue colors. Web safe color of #00150D is #000000 (or #000).
#00150D color RGB value is (0,21,13).
RGB: (0,21,13) (0%,8%,5%)
R 0 of 255 = 0%
G 21 of 255 = 8%
B 13 of 255 = 5%
R + G + B ~ 4%. #00150D is dark color.
R + G + B =
0 + 21 + 13 = 34 (100%)
R 0 of 34 ~ 0%
G 21 of 34 ~ 61.76%
B 13 of 34 ~ 38.24%
#00150D color CMYK value is (100,0,38,92).
CMYK: (100,0,38,92) C100M0Y38K92 (100%,0%,38%,92%) (1.00/0.00/0.38/0.92)
00 | 15 | 0D | |
---|---|---|---|
RGB | 0 | 21 | 13 |
HSL | 157° | 100.00% | 4.12% |
HSB/HSV | 157° | 100.00% | 8.24% |
CMYK | 100.00% | 0.00% | 38.10% |
91.76% |
HEX | 00 | 15 | 0D |
Decimal | 0 | 21 | 13 |
Binary | 0 | 10101 | 1101 |
Octal | 0 | 25 | 15 |
Examples of css and html codes for elements with #00150D color. Also use rgb(0,21,13) instead hex code.
.myTextColor { color: #00150D; }
<p style="color:#00150D">This sample text font color is #00150D.</p>
This text font color is #00150D.
.myBgColor { background-color: #00150D; }
<div style="background-color:#00150D">Inner text</div>
This div background color is #00150D.
.myBorderColor { border: 1px solid #00150D; }
<div style="border:3px solid #00150D">Div</div>
This div border color is #00150D.
.myOpacity80 { color: #00150D; opacity: 0.8; }
<p style="color:#00150D;opacity:0.8;">80%</p>
Text with #00150D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00150D;}
<p style="text-shadow: 3px 3px 1px #00150D">Text here.</p>
This text has shadow with #00150D color.
.textShadow {text-shadow: 3px 3px 1px #00150D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00150D, 5px 5px 20px red">Text here.</p>
This text has shadow with #00150D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00150D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00150D, Direction=45, Strength=4)">Text</p>
This text has shadow with #00150D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00150D; -webkit-box-shadow: 1px 1px 3px 2px #00150D; box-shadow: 1px 1px 3px 2px #00150D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00150D; -webkit-box-shadow: 1px 1px 3px 2px #00150D; box-shadow:1px 1px 3px 2px #00150D;">
Div content here</div>
This text has color #00150D on black background.
This text has color #00150D on white background.
This text has black color on #00150D background.
This text has white color on #00150D background.