HEX: #8EA58E
RGB: (142,165,142)
#8EA58E contains red, green and blue colors in about the same proportion. Web safe color of #8EA58E is #999999 (or #999).
#8EA58E color RGB value is (142,165,142).
RGB: (142,165,142) (56%,65%,56%)
R 142 of 255 = 56%
G 165 of 255 = 65%
B 142 of 255 = 56%
R + G + B ~ 59%. #8EA58E is middle color (not dark and not light).
R + G + B =
142 + 165 + 142 = 449 (100%)
R 142 of 449 ~ 31.63%
G 165 of 449 ~ 36.75%
B 142 of 449 ~ 31.63%
#8EA58E color CMYK value is (14,0,14,35).
CMYK: (14,0,14,35) C14M0Y14K35 (14%,0%,14%,35%) (0.14/0.00/0.14/0.35)
8E | A5 | 8E | |
---|---|---|---|
RGB | 142 | 165 | 142 |
HSL | 120° | 11.33% | 60.20% |
HSB/HSV | 120° | 13.94% | 64.71% |
CMYK | 13.94% | 0.00% | 13.94% |
35.29% |
HEX | 8E | A5 | 8E |
Decimal | 142 | 165 | 142 |
Binary | 10001110 | 10100101 | 10001110 |
Octal | 216 | 245 | 216 |
Examples of css and html codes for elements with #8EA58E color. Also use rgb(142,165,142) instead hex code.
.myTextColor { color: #8EA58E; }
<p style="color:#8EA58E">This sample text font color is #8EA58E.</p>
This text font color is #8EA58E.
.myBgColor { background-color: #8EA58E; }
<div style="background-color:#8EA58E">Inner text</div>
This div background color is #8EA58E.
.myBorderColor { border: 1px solid #8EA58E; }
<div style="border:3px solid #8EA58E">Div</div>
This div border color is #8EA58E.
.myOpacity80 { color: #8EA58E; opacity: 0.8; }
<p style="color:#8EA58E;opacity:0.8;">80%</p>
Text with #8EA58E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8EA58E;}
<p style="text-shadow: 3px 3px 1px #8EA58E">Text here.</p>
This text has shadow with #8EA58E color.
.textShadow {text-shadow: 3px 3px 1px #8EA58E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8EA58E, 5px 5px 20px red">Text here.</p>
This text has shadow with #8EA58E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8EA58E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8EA58E, Direction=45, Strength=4)">Text</p>
This text has shadow with #8EA58E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8EA58E; -webkit-box-shadow: 1px 1px 3px 2px #8EA58E; box-shadow: 1px 1px 3px 2px #8EA58E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8EA58E; -webkit-box-shadow: 1px 1px 3px 2px #8EA58E; box-shadow:1px 1px 3px 2px #8EA58E;">
Div content here</div>
This text has color #8EA58E on black background.
This text has color #8EA58E on white background.
This text has black color on #8EA58E background.
This text has white color on #8EA58E background.