HEX: #708B2F
RGB: (112,139,47)
#708B2F contains mainly red and green colors. Web safe color of #708B2F is #669933 (or #693).
#708B2F color RGB value is (112,139,47).
RGB: (112,139,47) (44%,55%,18%)
R 112 of 255 = 44%
G 139 of 255 = 55%
B 47 of 255 = 18%
R + G + B ~ 39%. #708B2F is quite dark color.
R + G + B =
112 + 139 + 47 = 298 (100%)
R 112 of 298 ~ 37.58%
G 139 of 298 ~ 46.64%
B 47 of 298 ~ 15.77%
#708B2F color CMYK value is (19,0,66,45).
CMYK: (19,0,66,45) C19M0Y66K45 (19%,0%,66%,45%) (0.19/0.00/0.66/0.45)
70 | 8B | 2F | |
---|---|---|---|
RGB | 112 | 139 | 47 |
HSL | 78° | 49.46% | 36.47% |
HSB/HSV | 78° | 66.19% | 54.51% |
CMYK | 19.42% | 0.00% | 66.19% |
45.49% |
HEX | 70 | 8B | 2F |
Decimal | 112 | 139 | 47 |
Binary | 1110000 | 10001011 | 101111 |
Octal | 160 | 213 | 57 |
Examples of css and html codes for elements with #708B2F color. Also use rgb(112,139,47) instead hex code.
.myTextColor { color: #708B2F; }
<p style="color:#708B2F">This sample text font color is #708B2F.</p>
This text font color is #708B2F.
.myBgColor { background-color: #708B2F; }
<div style="background-color:#708B2F">Inner text</div>
This div background color is #708B2F.
.myBorderColor { border: 1px solid #708B2F; }
<div style="border:3px solid #708B2F">Div</div>
This div border color is #708B2F.
.myOpacity80 { color: #708B2F; opacity: 0.8; }
<p style="color:#708B2F;opacity:0.8;">80%</p>
Text with #708B2F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #708B2F;}
<p style="text-shadow: 3px 3px 1px #708B2F">Text here.</p>
This text has shadow with #708B2F color.
.textShadow {text-shadow: 3px 3px 1px #708B2F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #708B2F, 5px 5px 20px red">Text here.</p>
This text has shadow with #708B2F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#708B2F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#708B2F, Direction=45, Strength=4)">Text</p>
This text has shadow with #708B2F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #708B2F; -webkit-box-shadow: 1px 1px 3px 2px #708B2F; box-shadow: 1px 1px 3px 2px #708B2F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #708B2F; -webkit-box-shadow: 1px 1px 3px 2px #708B2F; box-shadow:1px 1px 3px 2px #708B2F;">
Div content here</div>
This text has color #708B2F on black background.
This text has color #708B2F on white background.
This text has black color on #708B2F background.
This text has white color on #708B2F background.