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