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