HEX: #09050E
RGB: (9,5,14)
#09050E contains red, green and blue colors in about the same proportion. Web safe color of #09050E is #000000 (or #000).
#09050E color RGB value is (9,5,14).
RGB: (9,5,14) (4%,2%,5%)
R 9 of 255 = 4%
G 5 of 255 = 2%
B 14 of 255 = 5%
R + G + B ~ 4%. #09050E is dark color.
R + G + B =
9 + 5 + 14 = 28 (100%)
R 9 of 28 ~ 32.14%
G 5 of 28 ~ 17.86%
B 14 of 28 ~ 50%
#09050E color CMYK value is (36,64,0,95).
CMYK: (36,64,0,95) C36M64Y0K95 (36%,64%,0%,95%) (0.36/0.64/0.00/0.95)
09 | 05 | 0E | |
---|---|---|---|
RGB | 9 | 5 | 14 |
HSL | 267° | 47.37% | 3.73% |
HSB/HSV | 267° | 64.29% | 5.49% |
CMYK | 35.71% | 64.29% | 0.00% |
94.51% |
HEX | 09 | 05 | 0E |
Decimal | 9 | 5 | 14 |
Binary | 1001 | 101 | 1110 |
Octal | 11 | 5 | 16 |
Examples of css and html codes for elements with #09050E color. Also use rgb(9,5,14) instead hex code.
.myTextColor { color: #09050E; }
<p style="color:#09050E">This sample text font color is #09050E.</p>
This text font color is #09050E.
.myBgColor { background-color: #09050E; }
<div style="background-color:#09050E">Inner text</div>
This div background color is #09050E.
.myBorderColor { border: 1px solid #09050E; }
<div style="border:3px solid #09050E">Div</div>
This div border color is #09050E.
.myOpacity80 { color: #09050E; opacity: 0.8; }
<p style="color:#09050E;opacity:0.8;">80%</p>
Text with #09050E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #09050E;}
<p style="text-shadow: 3px 3px 1px #09050E">Text here.</p>
This text has shadow with #09050E color.
.textShadow {text-shadow: 3px 3px 1px #09050E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #09050E, 5px 5px 20px red">Text here.</p>
This text has shadow with #09050E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#09050E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#09050E, Direction=45, Strength=4)">Text</p>
This text has shadow with #09050E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #09050E; -webkit-box-shadow: 1px 1px 3px 2px #09050E; box-shadow: 1px 1px 3px 2px #09050E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #09050E; -webkit-box-shadow: 1px 1px 3px 2px #09050E; box-shadow:1px 1px 3px 2px #09050E;">
Div content here</div>
This text has color #09050E on black background.
This text has color #09050E on white background.
This text has black color on #09050E background.
This text has white color on #09050E background.