HEX: #87D85E
RGB: (135,216,94)
#87D85E contains mainly green color. Web safe color of #87D85E is #99CC66 (or #9C6).
#87D85E color RGB value is (135,216,94).
RGB: (135,216,94) (53%,85%,37%)
R 135 of 255 = 53%
G 216 of 255 = 85%
B 94 of 255 = 37%
R + G + B ~ 58%. #87D85E is middle color (not dark and not light).
R + G + B =
135 + 216 + 94 = 445 (100%)
R 135 of 445 ~ 30.34%
G 216 of 445 ~ 48.54%
B 94 of 445 ~ 21.12%
#87D85E color CMYK value is (38,0,56,15).
CMYK: (38,0,56,15) C38M0Y56K15 (38%,0%,56%,15%) (0.38/0.00/0.56/0.15)
87 | D8 | 5E | |
---|---|---|---|
RGB | 135 | 216 | 94 |
HSL | 100° | 61.00% | 60.78% |
HSB/HSV | 100° | 56.48% | 84.71% |
CMYK | 37.50% | 0.00% | 56.48% |
15.29% |
HEX | 87 | D8 | 5E |
Decimal | 135 | 216 | 94 |
Binary | 10000111 | 11011000 | 1011110 |
Octal | 207 | 330 | 136 |
Examples of css and html codes for elements with #87D85E color. Also use rgb(135,216,94) instead hex code.
.myTextColor { color: #87D85E; }
<p style="color:#87D85E">This sample text font color is #87D85E.</p>
This text font color is #87D85E.
.myBgColor { background-color: #87D85E; }
<div style="background-color:#87D85E">Inner text</div>
This div background color is #87D85E.
.myBorderColor { border: 1px solid #87D85E; }
<div style="border:3px solid #87D85E">Div</div>
This div border color is #87D85E.
.myOpacity80 { color: #87D85E; opacity: 0.8; }
<p style="color:#87D85E;opacity:0.8;">80%</p>
Text with #87D85E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87D85E;}
<p style="text-shadow: 3px 3px 1px #87D85E">Text here.</p>
This text has shadow with #87D85E color.
.textShadow {text-shadow: 3px 3px 1px #87D85E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87D85E, 5px 5px 20px red">Text here.</p>
This text has shadow with #87D85E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87D85E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87D85E, Direction=45, Strength=4)">Text</p>
This text has shadow with #87D85E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87D85E; -webkit-box-shadow: 1px 1px 3px 2px #87D85E; box-shadow: 1px 1px 3px 2px #87D85E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87D85E; -webkit-box-shadow: 1px 1px 3px 2px #87D85E; box-shadow:1px 1px 3px 2px #87D85E;">
Div content here</div>
This text has color #87D85E on black background.
This text has color #87D85E on white background.
This text has black color on #87D85E background.
This text has white color on #87D85E background.