HEX: #011513
RGB: (1,21,19)
#011513 contains red, green and blue colors in about the same proportion. Web safe color of #011513 is #000000 (or #000).
#011513 color RGB value is (1,21,19).
RGB: (1,21,19) (0%,8%,7%)
R 1 of 255 = 0%
G 21 of 255 = 8%
B 19 of 255 = 7%
R + G + B ~ 5%. #011513 is dark color.
R + G + B =
1 + 21 + 19 = 41 (100%)
R 1 of 41 ~ 2.44%
G 21 of 41 ~ 51.22%
B 19 of 41 ~ 46.34%
#011513 color CMYK value is (95,0,10,92).
CMYK: (95,0,10,92) C95M0Y10K92 (95%,0%,10%,92%) (0.95/0.00/0.10/0.92)
01 | 15 | 13 | |
---|---|---|---|
RGB | 1 | 21 | 19 |
HSL | 174° | 90.91% | 4.31% |
HSB/HSV | 174° | 95.24% | 8.24% |
CMYK | 95.24% | 0.00% | 9.52% |
91.76% |
HEX | 01 | 15 | 13 |
Decimal | 1 | 21 | 19 |
Binary | 1 | 10101 | 10011 |
Octal | 1 | 25 | 23 |
Examples of css and html codes for elements with #011513 color. Also use rgb(1,21,19) instead hex code.
.myTextColor { color: #011513; }
<p style="color:#011513">This sample text font color is #011513.</p>
This text font color is #011513.
.myBgColor { background-color: #011513; }
<div style="background-color:#011513">Inner text</div>
This div background color is #011513.
.myBorderColor { border: 1px solid #011513; }
<div style="border:3px solid #011513">Div</div>
This div border color is #011513.
.myOpacity80 { color: #011513; opacity: 0.8; }
<p style="color:#011513;opacity:0.8;">80%</p>
Text with #011513 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #011513;}
<p style="text-shadow: 3px 3px 1px #011513">Text here.</p>
This text has shadow with #011513 color.
.textShadow {text-shadow: 3px 3px 1px #011513, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #011513, 5px 5px 20px red">Text here.</p>
This text has shadow with #011513 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#011513, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#011513, Direction=45, Strength=4)">Text</p>
This text has shadow with #011513 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #011513; -webkit-box-shadow: 1px 1px 3px 2px #011513; box-shadow: 1px 1px 3px 2px #011513; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #011513; -webkit-box-shadow: 1px 1px 3px 2px #011513; box-shadow:1px 1px 3px 2px #011513;">
Div content here</div>
This text has color #011513 on black background.
This text has color #011513 on white background.
This text has black color on #011513 background.
This text has white color on #011513 background.