HEX: #000F0D
RGB: (0,15,13)
#000F0D contains only green and blue colors. Web safe color of #000F0D is #000000 (or #000).
#000F0D color RGB value is (0,15,13).
RGB: (0,15,13) (0%,6%,5%)
R 0 of 255 = 0%
G 15 of 255 = 6%
B 13 of 255 = 5%
R + G + B ~ 4%. #000F0D is dark color.
R + G + B =
0 + 15 + 13 = 28 (100%)
R 0 of 28 ~ 0%
G 15 of 28 ~ 53.57%
B 13 of 28 ~ 46.43%
#000F0D color CMYK value is (100,0,13,94).
CMYK: (100,0,13,94) C100M0Y13K94 (100%,0%,13%,94%) (1.00/0.00/0.13/0.94)
00 | 0F | 0D | |
---|---|---|---|
RGB | 0 | 15 | 13 |
HSL | 172° | 100.00% | 2.94% |
HSB/HSV | 172° | 100.00% | 5.88% |
CMYK | 100.00% | 0.00% | 13.33% |
94.12% |
HEX | 00 | 0F | 0D |
Decimal | 0 | 15 | 13 |
Binary | 0 | 1111 | 1101 |
Octal | 0 | 17 | 15 |
Examples of css and html codes for elements with #000F0D color. Also use rgb(0,15,13) instead hex code.
.myTextColor { color: #000F0D; }
<p style="color:#000F0D">This sample text font color is #000F0D.</p>
This text font color is #000F0D.
.myBgColor { background-color: #000F0D; }
<div style="background-color:#000F0D">Inner text</div>
This div background color is #000F0D.
.myBorderColor { border: 1px solid #000F0D; }
<div style="border:3px solid #000F0D">Div</div>
This div border color is #000F0D.
.myOpacity80 { color: #000F0D; opacity: 0.8; }
<p style="color:#000F0D;opacity:0.8;">80%</p>
Text with #000F0D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #000F0D;}
<p style="text-shadow: 3px 3px 1px #000F0D">Text here.</p>
This text has shadow with #000F0D color.
.textShadow {text-shadow: 3px 3px 1px #000F0D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #000F0D, 5px 5px 20px red">Text here.</p>
This text has shadow with #000F0D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#000F0D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#000F0D, Direction=45, Strength=4)">Text</p>
This text has shadow with #000F0D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #000F0D; -webkit-box-shadow: 1px 1px 3px 2px #000F0D; box-shadow: 1px 1px 3px 2px #000F0D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #000F0D; -webkit-box-shadow: 1px 1px 3px 2px #000F0D; box-shadow:1px 1px 3px 2px #000F0D;">
Div content here</div>
This text has color #000F0D on black background.
This text has color #000F0D on white background.
This text has black color on #000F0D background.
This text has white color on #000F0D background.