HEX: #070D0B
RGB: (7,13,11)
#070D0B contains red, green and blue colors in about the same proportion. Web safe color of #070D0B is #000000 (or #000).
#070D0B color RGB value is (7,13,11).
RGB: (7,13,11) (3%,5%,4%)
R 7 of 255 = 3%
G 13 of 255 = 5%
B 11 of 255 = 4%
R + G + B ~ 4%. #070D0B is dark color.
R + G + B =
7 + 13 + 11 = 31 (100%)
R 7 of 31 ~ 22.58%
G 13 of 31 ~ 41.94%
B 11 of 31 ~ 35.48%
#070D0B color CMYK value is (46,0,15,95).
CMYK: (46,0,15,95) C46M0Y15K95 (46%,0%,15%,95%) (0.46/0.00/0.15/0.95)
07 | 0D | 0B | |
---|---|---|---|
RGB | 7 | 13 | 11 |
HSL | 160° | 30.00% | 3.92% |
HSB/HSV | 160° | 46.15% | 5.10% |
CMYK | 46.15% | 0.00% | 15.38% |
94.90% |
HEX | 07 | 0D | 0B |
Decimal | 7 | 13 | 11 |
Binary | 111 | 1101 | 1011 |
Octal | 7 | 15 | 13 |
Examples of css and html codes for elements with #070D0B color. Also use rgb(7,13,11) instead hex code.
.myTextColor { color: #070D0B; }
<p style="color:#070D0B">This sample text font color is #070D0B.</p>
This text font color is #070D0B.
.myBgColor { background-color: #070D0B; }
<div style="background-color:#070D0B">Inner text</div>
This div background color is #070D0B.
.myBorderColor { border: 1px solid #070D0B; }
<div style="border:3px solid #070D0B">Div</div>
This div border color is #070D0B.
.myOpacity80 { color: #070D0B; opacity: 0.8; }
<p style="color:#070D0B;opacity:0.8;">80%</p>
Text with #070D0B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #070D0B;}
<p style="text-shadow: 3px 3px 1px #070D0B">Text here.</p>
This text has shadow with #070D0B color.
.textShadow {text-shadow: 3px 3px 1px #070D0B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #070D0B, 5px 5px 20px red">Text here.</p>
This text has shadow with #070D0B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#070D0B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#070D0B, Direction=45, Strength=4)">Text</p>
This text has shadow with #070D0B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #070D0B; -webkit-box-shadow: 1px 1px 3px 2px #070D0B; box-shadow: 1px 1px 3px 2px #070D0B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #070D0B; -webkit-box-shadow: 1px 1px 3px 2px #070D0B; box-shadow:1px 1px 3px 2px #070D0B;">
Div content here</div>
This text has color #070D0B on black background.
This text has color #070D0B on white background.
This text has black color on #070D0B background.
This text has white color on #070D0B background.