HEX: #111013
RGB: (17,16,19)
#111013 contains red, green and blue colors in about the same proportion. Web safe color of #111013 is #000000 (or #000).
#111013 color RGB value is (17,16,19).
RGB: (17,16,19) (7%,6%,7%)
R 17 of 255 = 7%
G 16 of 255 = 6%
B 19 of 255 = 7%
R + G + B ~ 7%. #111013 is dark color.
R + G + B =
17 + 16 + 19 = 52 (100%)
R 17 of 52 ~ 32.69%
G 16 of 52 ~ 30.77%
B 19 of 52 ~ 36.54%
#111013 color CMYK value is (11,16,0,93).
CMYK: (11,16,0,93) C11M16Y0K93 (11%,16%,0%,93%) (0.11/0.16/0.00/0.93)
11 | 10 | 13 | |
---|---|---|---|
RGB | 17 | 16 | 19 |
HSL | 260° | 8.57% | 6.86% |
HSB/HSV | 260° | 15.79% | 7.45% |
CMYK | 10.53% | 15.79% | 0.00% |
92.55% |
HEX | 11 | 10 | 13 |
Decimal | 17 | 16 | 19 |
Binary | 10001 | 10000 | 10011 |
Octal | 21 | 20 | 23 |
Examples of css and html codes for elements with #111013 color. Also use rgb(17,16,19) instead hex code.
.myTextColor { color: #111013; }
<p style="color:#111013">This sample text font color is #111013.</p>
This text font color is #111013.
.myBgColor { background-color: #111013; }
<div style="background-color:#111013">Inner text</div>
This div background color is #111013.
.myBorderColor { border: 1px solid #111013; }
<div style="border:3px solid #111013">Div</div>
This div border color is #111013.
.myOpacity80 { color: #111013; opacity: 0.8; }
<p style="color:#111013;opacity:0.8;">80%</p>
Text with #111013 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #111013;}
<p style="text-shadow: 3px 3px 1px #111013">Text here.</p>
This text has shadow with #111013 color.
.textShadow {text-shadow: 3px 3px 1px #111013, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #111013, 5px 5px 20px red">Text here.</p>
This text has shadow with #111013 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#111013, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#111013, Direction=45, Strength=4)">Text</p>
This text has shadow with #111013 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #111013; -webkit-box-shadow: 1px 1px 3px 2px #111013; box-shadow: 1px 1px 3px 2px #111013; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #111013; -webkit-box-shadow: 1px 1px 3px 2px #111013; box-shadow:1px 1px 3px 2px #111013;">
Div content here</div>
This text has color #111013 on black background.
This text has color #111013 on white background.
This text has black color on #111013 background.
This text has white color on #111013 background.