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