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