HEX: #13070D
RGB: (19,7,13)
#13070D contains red, green and blue colors in about the same proportion. Web safe color of #13070D is #000000 (or #000).
#13070D color RGB value is (19,7,13).
RGB: (19,7,13) (7%,3%,5%)
R 19 of 255 = 7%
G 7 of 255 = 3%
B 13 of 255 = 5%
R + G + B ~ 5%. #13070D is dark color.
R + G + B =
19 + 7 + 13 = 39 (100%)
R 19 of 39 ~ 48.72%
G 7 of 39 ~ 17.95%
B 13 of 39 ~ 33.33%
#13070D color CMYK value is (0,63,32,93).
CMYK: (0,63,32,93) C0M63Y32K93 (0%,63%,32%,93%) (0.00/0.63/0.32/0.93)
13 | 07 | 0D | |
---|---|---|---|
RGB | 19 | 7 | 13 |
HSL | 330° | 46.15% | 5.10% |
HSB/HSV | 330° | 63.16% | 7.45% |
CMYK | 0.00% | 63.16% | 31.58% |
92.55% |
HEX | 13 | 07 | 0D |
Decimal | 19 | 7 | 13 |
Binary | 10011 | 111 | 1101 |
Octal | 23 | 7 | 15 |
Examples of css and html codes for elements with #13070D color. Also use rgb(19,7,13) instead hex code.
.myTextColor { color: #13070D; }
<p style="color:#13070D">This sample text font color is #13070D.</p>
This text font color is #13070D.
.myBgColor { background-color: #13070D; }
<div style="background-color:#13070D">Inner text</div>
This div background color is #13070D.
.myBorderColor { border: 1px solid #13070D; }
<div style="border:3px solid #13070D">Div</div>
This div border color is #13070D.
.myOpacity80 { color: #13070D; opacity: 0.8; }
<p style="color:#13070D;opacity:0.8;">80%</p>
Text with #13070D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #13070D;}
<p style="text-shadow: 3px 3px 1px #13070D">Text here.</p>
This text has shadow with #13070D color.
.textShadow {text-shadow: 3px 3px 1px #13070D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #13070D, 5px 5px 20px red">Text here.</p>
This text has shadow with #13070D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#13070D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#13070D, Direction=45, Strength=4)">Text</p>
This text has shadow with #13070D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #13070D; -webkit-box-shadow: 1px 1px 3px 2px #13070D; box-shadow: 1px 1px 3px 2px #13070D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #13070D; -webkit-box-shadow: 1px 1px 3px 2px #13070D; box-shadow:1px 1px 3px 2px #13070D;">
Div content here</div>
This text has color #13070D on black background.
This text has color #13070D on white background.
This text has black color on #13070D background.
This text has white color on #13070D background.