HEX: #09040A
RGB: (9,4,10)
#09040A contains red, green and blue colors in about the same proportion. Web safe color of #09040A is #000000 (or #000).
#09040A color RGB value is (9,4,10).
RGB: (9,4,10) (4%,2%,4%)
R 9 of 255 = 4%
G 4 of 255 = 2%
B 10 of 255 = 4%
R + G + B ~ 3%. #09040A is dark color.
R + G + B =
9 + 4 + 10 = 23 (100%)
R 9 of 23 ~ 39.13%
G 4 of 23 ~ 17.39%
B 10 of 23 ~ 43.48%
#09040A color CMYK value is (10,60,0,96).
CMYK: (10,60,0,96) C10M60Y0K96 (10%,60%,0%,96%) (0.10/0.60/0.00/0.96)
09 | 04 | 0A | |
---|---|---|---|
RGB | 9 | 4 | 10 |
HSL | 290° | 42.86% | 2.75% |
HSB/HSV | 290° | 60.00% | 3.92% |
CMYK | 10.00% | 60.00% | 0.00% |
96.08% |
HEX | 09 | 04 | 0A |
Decimal | 9 | 4 | 10 |
Binary | 1001 | 100 | 1010 |
Octal | 11 | 4 | 12 |
Examples of css and html codes for elements with #09040A color. Also use rgb(9,4,10) instead hex code.
.myTextColor { color: #09040A; }
<p style="color:#09040A">This sample text font color is #09040A.</p>
This text font color is #09040A.
.myBgColor { background-color: #09040A; }
<div style="background-color:#09040A">Inner text</div>
This div background color is #09040A.
.myBorderColor { border: 1px solid #09040A; }
<div style="border:3px solid #09040A">Div</div>
This div border color is #09040A.
.myOpacity80 { color: #09040A; opacity: 0.8; }
<p style="color:#09040A;opacity:0.8;">80%</p>
Text with #09040A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #09040A;}
<p style="text-shadow: 3px 3px 1px #09040A">Text here.</p>
This text has shadow with #09040A color.
.textShadow {text-shadow: 3px 3px 1px #09040A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #09040A, 5px 5px 20px red">Text here.</p>
This text has shadow with #09040A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#09040A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#09040A, Direction=45, Strength=4)">Text</p>
This text has shadow with #09040A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #09040A; -webkit-box-shadow: 1px 1px 3px 2px #09040A; box-shadow: 1px 1px 3px 2px #09040A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #09040A; -webkit-box-shadow: 1px 1px 3px 2px #09040A; box-shadow:1px 1px 3px 2px #09040A;">
Div content here</div>
This text has color #09040A on black background.
This text has color #09040A on white background.
This text has black color on #09040A background.
This text has white color on #09040A background.