HEX: #709D6E
RGB: (112,157,110)
#709D6E contains red, green and blue colors in about the same proportion. Web safe color of #709D6E is #669966 (or #696).
#709D6E color RGB value is (112,157,110).
RGB: (112,157,110) (44%,62%,43%)
R 112 of 255 = 44%
G 157 of 255 = 62%
B 110 of 255 = 43%
R + G + B ~ 50%. #709D6E is middle color (not dark and not light).
R + G + B =
112 + 157 + 110 = 379 (100%)
R 112 of 379 ~ 29.55%
G 157 of 379 ~ 41.42%
B 110 of 379 ~ 29.02%
#709D6E color CMYK value is (29,0,30,38).
CMYK: (29,0,30,38) C29M0Y30K38 (29%,0%,30%,38%) (0.29/0.00/0.30/0.38)
70 | 9D | 6E | |
---|---|---|---|
RGB | 112 | 157 | 110 |
HSL | 117° | 19.34% | 52.35% |
HSB/HSV | 117° | 29.94% | 61.57% |
CMYK | 28.66% | 0.00% | 29.94% |
38.43% |
HEX | 70 | 9D | 6E |
Decimal | 112 | 157 | 110 |
Binary | 1110000 | 10011101 | 1101110 |
Octal | 160 | 235 | 156 |
Examples of css and html codes for elements with #709D6E color. Also use rgb(112,157,110) instead hex code.
.myTextColor { color: #709D6E; }
<p style="color:#709D6E">This sample text font color is #709D6E.</p>
This text font color is #709D6E.
.myBgColor { background-color: #709D6E; }
<div style="background-color:#709D6E">Inner text</div>
This div background color is #709D6E.
.myBorderColor { border: 1px solid #709D6E; }
<div style="border:3px solid #709D6E">Div</div>
This div border color is #709D6E.
.myOpacity80 { color: #709D6E; opacity: 0.8; }
<p style="color:#709D6E;opacity:0.8;">80%</p>
Text with #709D6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709D6E;}
<p style="text-shadow: 3px 3px 1px #709D6E">Text here.</p>
This text has shadow with #709D6E color.
.textShadow {text-shadow: 3px 3px 1px #709D6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709D6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #709D6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709D6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709D6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #709D6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709D6E; -webkit-box-shadow: 1px 1px 3px 2px #709D6E; box-shadow: 1px 1px 3px 2px #709D6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709D6E; -webkit-box-shadow: 1px 1px 3px 2px #709D6E; box-shadow:1px 1px 3px 2px #709D6E;">
Div content here</div>
This text has color #709D6E on black background.
This text has color #709D6E on white background.
This text has black color on #709D6E background.
This text has white color on #709D6E background.