HEX: #07120D
RGB: (7,18,13)
#07120D contains red, green and blue colors in about the same proportion. Web safe color of #07120D is #000000 (or #000).
#07120D color RGB value is (7,18,13).
RGB: (7,18,13) (3%,7%,5%)
R 7 of 255 = 3%
G 18 of 255 = 7%
B 13 of 255 = 5%
R + G + B ~ 5%. #07120D is dark color.
R + G + B =
7 + 18 + 13 = 38 (100%)
R 7 of 38 ~ 18.42%
G 18 of 38 ~ 47.37%
B 13 of 38 ~ 34.21%
#07120D color CMYK value is (61,0,28,93).
CMYK: (61,0,28,93) C61M0Y28K93 (61%,0%,28%,93%) (0.61/0.00/0.28/0.93)
07 | 12 | 0D | |
---|---|---|---|
RGB | 7 | 18 | 13 |
HSL | 153° | 44.00% | 4.90% |
HSB/HSV | 153° | 61.11% | 7.06% |
CMYK | 61.11% | 0.00% | 27.78% |
92.94% |
HEX | 07 | 12 | 0D |
Decimal | 7 | 18 | 13 |
Binary | 111 | 10010 | 1101 |
Octal | 7 | 22 | 15 |
Examples of css and html codes for elements with #07120D color. Also use rgb(7,18,13) instead hex code.
.myTextColor { color: #07120D; }
<p style="color:#07120D">This sample text font color is #07120D.</p>
This text font color is #07120D.
.myBgColor { background-color: #07120D; }
<div style="background-color:#07120D">Inner text</div>
This div background color is #07120D.
.myBorderColor { border: 1px solid #07120D; }
<div style="border:3px solid #07120D">Div</div>
This div border color is #07120D.
.myOpacity80 { color: #07120D; opacity: 0.8; }
<p style="color:#07120D;opacity:0.8;">80%</p>
Text with #07120D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07120D;}
<p style="text-shadow: 3px 3px 1px #07120D">Text here.</p>
This text has shadow with #07120D color.
.textShadow {text-shadow: 3px 3px 1px #07120D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07120D, 5px 5px 20px red">Text here.</p>
This text has shadow with #07120D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07120D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07120D, Direction=45, Strength=4)">Text</p>
This text has shadow with #07120D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07120D; -webkit-box-shadow: 1px 1px 3px 2px #07120D; box-shadow: 1px 1px 3px 2px #07120D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07120D; -webkit-box-shadow: 1px 1px 3px 2px #07120D; box-shadow:1px 1px 3px 2px #07120D;">
Div content here</div>
This text has color #07120D on black background.
This text has color #07120D on white background.
This text has black color on #07120D background.
This text has white color on #07120D background.