HEX: #090813
RGB: (9,8,19)
#090813 contains red, green and blue colors in about the same proportion. Web safe color of #090813 is #000000 (or #000).
#090813 color RGB value is (9,8,19).
RGB: (9,8,19) (4%,3%,7%)
R 9 of 255 = 4%
G 8 of 255 = 3%
B 19 of 255 = 7%
R + G + B ~ 5%. #090813 is dark color.
R + G + B =
9 + 8 + 19 = 36 (100%)
R 9 of 36 ~ 25%
G 8 of 36 ~ 22.22%
B 19 of 36 ~ 52.78%
#090813 color CMYK value is (53,58,0,93).
CMYK: (53,58,0,93) C53M58Y0K93 (53%,58%,0%,93%) (0.53/0.58/0.00/0.93)
09 | 08 | 13 | |
---|---|---|---|
RGB | 9 | 8 | 19 |
HSL | 245° | 40.74% | 5.29% |
HSB/HSV | 245° | 57.89% | 7.45% |
CMYK | 52.63% | 57.89% | 0.00% |
92.55% |
HEX | 09 | 08 | 13 |
Decimal | 9 | 8 | 19 |
Binary | 1001 | 1000 | 10011 |
Octal | 11 | 10 | 23 |
Examples of css and html codes for elements with #090813 color. Also use rgb(9,8,19) instead hex code.
.myTextColor { color: #090813; }
<p style="color:#090813">This sample text font color is #090813.</p>
This text font color is #090813.
.myBgColor { background-color: #090813; }
<div style="background-color:#090813">Inner text</div>
This div background color is #090813.
.myBorderColor { border: 1px solid #090813; }
<div style="border:3px solid #090813">Div</div>
This div border color is #090813.
.myOpacity80 { color: #090813; opacity: 0.8; }
<p style="color:#090813;opacity:0.8;">80%</p>
Text with #090813 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #090813;}
<p style="text-shadow: 3px 3px 1px #090813">Text here.</p>
This text has shadow with #090813 color.
.textShadow {text-shadow: 3px 3px 1px #090813, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #090813, 5px 5px 20px red">Text here.</p>
This text has shadow with #090813 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#090813, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#090813, Direction=45, Strength=4)">Text</p>
This text has shadow with #090813 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #090813; -webkit-box-shadow: 1px 1px 3px 2px #090813; box-shadow: 1px 1px 3px 2px #090813; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #090813; -webkit-box-shadow: 1px 1px 3px 2px #090813; box-shadow:1px 1px 3px 2px #090813;">
Div content here</div>
This text has color #090813 on black background.
This text has color #090813 on white background.
This text has black color on #090813 background.
This text has white color on #090813 background.