HEX: #050009
RGB: (5,0,9)
#050009 contains only red and blue colors. Web safe color of #050009 is #000000 (or #000).
#050009 color RGB value is (5,0,9).
RGB: (5,0,9) (2%,0%,4%)
R 5 of 255 = 2%
G 0 of 255 = 0%
B 9 of 255 = 4%
R + G + B ~ 2%. #050009 is dark color.
R + G + B =
5 + 0 + 9 = 14 (100%)
R 5 of 14 ~ 35.71%
G 0 of 14 ~ 0%
B 9 of 14 ~ 64.29%
#050009 color CMYK value is (44,100,0,96).
CMYK: (44,100,0,96) C44M100Y0K96 (44%,100%,0%,96%) (0.44/1.00/0.00/0.96)
05 | 00 | 09 | |
---|---|---|---|
RGB | 5 | 0 | 9 |
HSL | 273° | 100.00% | 1.76% |
HSB/HSV | 273° | 100.00% | 3.53% |
CMYK | 44.44% | 100.00% | 0.00% |
96.47% |
HEX | 05 | 00 | 09 |
Decimal | 5 | 0 | 9 |
Binary | 101 | 0 | 1001 |
Octal | 5 | 0 | 11 |
Examples of css and html codes for elements with #050009 color. Also use rgb(5,0,9) instead hex code.
.myTextColor { color: #050009; }
<p style="color:#050009">This sample text font color is #050009.</p>
This text font color is #050009.
.myBgColor { background-color: #050009; }
<div style="background-color:#050009">Inner text</div>
This div background color is #050009.
.myBorderColor { border: 1px solid #050009; }
<div style="border:3px solid #050009">Div</div>
This div border color is #050009.
.myOpacity80 { color: #050009; opacity: 0.8; }
<p style="color:#050009;opacity:0.8;">80%</p>
Text with #050009 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #050009;}
<p style="text-shadow: 3px 3px 1px #050009">Text here.</p>
This text has shadow with #050009 color.
.textShadow {text-shadow: 3px 3px 1px #050009, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #050009, 5px 5px 20px red">Text here.</p>
This text has shadow with #050009 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#050009, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#050009, Direction=45, Strength=4)">Text</p>
This text has shadow with #050009 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #050009; -webkit-box-shadow: 1px 1px 3px 2px #050009; box-shadow: 1px 1px 3px 2px #050009; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #050009; -webkit-box-shadow: 1px 1px 3px 2px #050009; box-shadow:1px 1px 3px 2px #050009;">
Div content here</div>
This text has color #050009 on black background.
This text has color #050009 on white background.
This text has black color on #050009 background.
This text has white color on #050009 background.