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