HEX: #07471C
RGB: (7,71,28)
#07471C contains mainly green and blue colors. Web safe color of #07471C is #003333 (or #033).
#07471C color RGB value is (7,71,28).
RGB: (7,71,28) (3%,28%,11%)
R 7 of 255 = 3%
G 71 of 255 = 28%
B 28 of 255 = 11%
R + G + B ~ 14%. #07471C is dark color.
R + G + B =
7 + 71 + 28 = 106 (100%)
R 7 of 106 ~ 6.6%
G 71 of 106 ~ 66.98%
B 28 of 106 ~ 26.42%
#07471C color CMYK value is (90,0,61,72).
CMYK: (90,0,61,72) C90M0Y61K72 (90%,0%,61%,72%) (0.90/0.00/0.61/0.72)
07 | 47 | 1C | |
---|---|---|---|
RGB | 7 | 71 | 28 |
HSL | 140° | 82.05% | 15.29% |
HSB/HSV | 140° | 90.14% | 27.84% |
CMYK | 90.14% | 0.00% | 60.56% |
72.16% |
HEX | 07 | 47 | 1C |
Decimal | 7 | 71 | 28 |
Binary | 111 | 1000111 | 11100 |
Octal | 7 | 107 | 34 |
Examples of css and html codes for elements with #07471C color. Also use rgb(7,71,28) instead hex code.
.myTextColor { color: #07471C; }
<p style="color:#07471C">This sample text font color is #07471C.</p>
This text font color is #07471C.
.myBgColor { background-color: #07471C; }
<div style="background-color:#07471C">Inner text</div>
This div background color is #07471C.
.myBorderColor { border: 1px solid #07471C; }
<div style="border:3px solid #07471C">Div</div>
This div border color is #07471C.
.myOpacity80 { color: #07471C; opacity: 0.8; }
<p style="color:#07471C;opacity:0.8;">80%</p>
Text with #07471C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07471C;}
<p style="text-shadow: 3px 3px 1px #07471C">Text here.</p>
This text has shadow with #07471C color.
.textShadow {text-shadow: 3px 3px 1px #07471C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07471C, 5px 5px 20px red">Text here.</p>
This text has shadow with #07471C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07471C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07471C, Direction=45, Strength=4)">Text</p>
This text has shadow with #07471C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07471C; -webkit-box-shadow: 1px 1px 3px 2px #07471C; box-shadow: 1px 1px 3px 2px #07471C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07471C; -webkit-box-shadow: 1px 1px 3px 2px #07471C; box-shadow:1px 1px 3px 2px #07471C;">
Div content here</div>
This text has color #07471C on black background.
This text has color #07471C on white background.
This text has black color on #07471C background.
This text has white color on #07471C background.