HEX: #709008
RGB: (112,144,8)
#709008 contains mainly red and green colors. Web safe color of #709008 is #669900 (or #690).
#709008 color RGB value is (112,144,8).
RGB: (112,144,8) (44%,56%,3%)
R 112 of 255 = 44%
G 144 of 255 = 56%
B 8 of 255 = 3%
R + G + B ~ 34%. #709008 is quite dark color.
R + G + B =
112 + 144 + 8 = 264 (100%)
R 112 of 264 ~ 42.42%
G 144 of 264 ~ 54.55%
B 8 of 264 ~ 3.03%
#709008 color CMYK value is (22,0,94,44).
CMYK: (22,0,94,44) C22M0Y94K44 (22%,0%,94%,44%) (0.22/0.00/0.94/0.44)
70 | 90 | 08 | |
---|---|---|---|
RGB | 112 | 144 | 8 |
HSL | 74° | 89.47% | 29.80% |
HSB/HSV | 74° | 94.44% | 56.47% |
CMYK | 22.22% | 0.00% | 94.44% |
43.53% |
HEX | 70 | 90 | 08 |
Decimal | 112 | 144 | 8 |
Binary | 1110000 | 10010000 | 1000 |
Octal | 160 | 220 | 10 |
Examples of css and html codes for elements with #709008 color. Also use rgb(112,144,8) instead hex code.
.myTextColor { color: #709008; }
<p style="color:#709008">This sample text font color is #709008.</p>
This text font color is #709008.
.myBgColor { background-color: #709008; }
<div style="background-color:#709008">Inner text</div>
This div background color is #709008.
.myBorderColor { border: 1px solid #709008; }
<div style="border:3px solid #709008">Div</div>
This div border color is #709008.
.myOpacity80 { color: #709008; opacity: 0.8; }
<p style="color:#709008;opacity:0.8;">80%</p>
Text with #709008 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709008;}
<p style="text-shadow: 3px 3px 1px #709008">Text here.</p>
This text has shadow with #709008 color.
.textShadow {text-shadow: 3px 3px 1px #709008, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709008, 5px 5px 20px red">Text here.</p>
This text has shadow with #709008 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709008, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709008, Direction=45, Strength=4)">Text</p>
This text has shadow with #709008 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709008; -webkit-box-shadow: 1px 1px 3px 2px #709008; box-shadow: 1px 1px 3px 2px #709008; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709008; -webkit-box-shadow: 1px 1px 3px 2px #709008; box-shadow:1px 1px 3px 2px #709008;">
Div content here</div>
This text has color #709008 on black background.
This text has color #709008 on white background.
This text has black color on #709008 background.
This text has white color on #709008 background.