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