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