HEX: #04290D
RGB: (4,41,13)
#04290D contains red, green and blue colors in about the same proportion. Web safe color of #04290D is #003300 (or #030).
#04290D color RGB value is (4,41,13).
RGB: (4,41,13) (2%,16%,5%)
R 4 of 255 = 2%
G 41 of 255 = 16%
B 13 of 255 = 5%
R + G + B ~ 8%. #04290D is dark color.
R + G + B =
4 + 41 + 13 = 58 (100%)
R 4 of 58 ~ 6.9%
G 41 of 58 ~ 70.69%
B 13 of 58 ~ 22.41%
#04290D color CMYK value is (90,0,68,84).
CMYK: (90,0,68,84) C90M0Y68K84 (90%,0%,68%,84%) (0.90/0.00/0.68/0.84)
04 | 29 | 0D | |
---|---|---|---|
RGB | 4 | 41 | 13 |
HSL | 135° | 82.22% | 8.82% |
HSB/HSV | 135° | 90.24% | 16.08% |
CMYK | 90.24% | 0.00% | 68.29% |
83.92% |
HEX | 04 | 29 | 0D |
Decimal | 4 | 41 | 13 |
Binary | 100 | 101001 | 1101 |
Octal | 4 | 51 | 15 |
Examples of css and html codes for elements with #04290D color. Also use rgb(4,41,13) instead hex code.
.myTextColor { color: #04290D; }
<p style="color:#04290D">This sample text font color is #04290D.</p>
This text font color is #04290D.
.myBgColor { background-color: #04290D; }
<div style="background-color:#04290D">Inner text</div>
This div background color is #04290D.
.myBorderColor { border: 1px solid #04290D; }
<div style="border:3px solid #04290D">Div</div>
This div border color is #04290D.
.myOpacity80 { color: #04290D; opacity: 0.8; }
<p style="color:#04290D;opacity:0.8;">80%</p>
Text with #04290D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #04290D;}
<p style="text-shadow: 3px 3px 1px #04290D">Text here.</p>
This text has shadow with #04290D color.
.textShadow {text-shadow: 3px 3px 1px #04290D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #04290D, 5px 5px 20px red">Text here.</p>
This text has shadow with #04290D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#04290D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#04290D, Direction=45, Strength=4)">Text</p>
This text has shadow with #04290D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #04290D; -webkit-box-shadow: 1px 1px 3px 2px #04290D; box-shadow: 1px 1px 3px 2px #04290D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #04290D; -webkit-box-shadow: 1px 1px 3px 2px #04290D; box-shadow:1px 1px 3px 2px #04290D;">
Div content here</div>
This text has color #04290D on black background.
This text has color #04290D on white background.
This text has black color on #04290D background.
This text has white color on #04290D background.