HEX: #07412E
RGB: (7,65,46)
#07412E contains red, green and blue colors in about the same proportion. Web safe color of #07412E is #003333 (or #033).
#07412E color RGB value is (7,65,46).
RGB: (7,65,46) (3%,25%,18%)
R 7 of 255 = 3%
G 65 of 255 = 25%
B 46 of 255 = 18%
R + G + B ~ 15%. #07412E is dark color.
R + G + B =
7 + 65 + 46 = 118 (100%)
R 7 of 118 ~ 5.93%
G 65 of 118 ~ 55.08%
B 46 of 118 ~ 38.98%
#07412E color CMYK value is (89,0,29,75).
CMYK: (89,0,29,75) C89M0Y29K75 (89%,0%,29%,75%) (0.89/0.00/0.29/0.75)
07 | 41 | 2E | |
---|---|---|---|
RGB | 7 | 65 | 46 |
HSL | 160° | 80.56% | 14.12% |
HSB/HSV | 160° | 89.23% | 25.49% |
CMYK | 89.23% | 0.00% | 29.23% |
74.51% |
HEX | 07 | 41 | 2E |
Decimal | 7 | 65 | 46 |
Binary | 111 | 1000001 | 101110 |
Octal | 7 | 101 | 56 |
Examples of css and html codes for elements with #07412E color. Also use rgb(7,65,46) instead hex code.
.myTextColor { color: #07412E; }
<p style="color:#07412E">This sample text font color is #07412E.</p>
This text font color is #07412E.
.myBgColor { background-color: #07412E; }
<div style="background-color:#07412E">Inner text</div>
This div background color is #07412E.
.myBorderColor { border: 1px solid #07412E; }
<div style="border:3px solid #07412E">Div</div>
This div border color is #07412E.
.myOpacity80 { color: #07412E; opacity: 0.8; }
<p style="color:#07412E;opacity:0.8;">80%</p>
Text with #07412E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07412E;}
<p style="text-shadow: 3px 3px 1px #07412E">Text here.</p>
This text has shadow with #07412E color.
.textShadow {text-shadow: 3px 3px 1px #07412E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07412E, 5px 5px 20px red">Text here.</p>
This text has shadow with #07412E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07412E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07412E, Direction=45, Strength=4)">Text</p>
This text has shadow with #07412E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07412E; -webkit-box-shadow: 1px 1px 3px 2px #07412E; box-shadow: 1px 1px 3px 2px #07412E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07412E; -webkit-box-shadow: 1px 1px 3px 2px #07412E; box-shadow:1px 1px 3px 2px #07412E;">
Div content here</div>
This text has color #07412E on black background.
This text has color #07412E on white background.
This text has black color on #07412E background.
This text has white color on #07412E background.