HEX: #87D968
RGB: (135,217,104)
#87D968 contains mainly green color. Web safe color of #87D968 is #99CC66 (or #9C6).
#87D968 color RGB value is (135,217,104).
RGB: (135,217,104) (53%,85%,41%)
R 135 of 255 = 53%
G 217 of 255 = 85%
B 104 of 255 = 41%
R + G + B ~ 60%. #87D968 is middle color (not dark and not light).
R + G + B =
135 + 217 + 104 = 456 (100%)
R 135 of 456 ~ 29.61%
G 217 of 456 ~ 47.59%
B 104 of 456 ~ 22.81%
#87D968 color CMYK value is (38,0,52,15).
CMYK: (38,0,52,15) C38M0Y52K15 (38%,0%,52%,15%) (0.38/0.00/0.52/0.15)
87 | D9 | 68 | |
---|---|---|---|
RGB | 135 | 217 | 104 |
HSL | 104° | 59.79% | 62.94% |
HSB/HSV | 104° | 52.07% | 85.10% |
CMYK | 37.79% | 0.00% | 52.07% |
14.90% |
HEX | 87 | D9 | 68 |
Decimal | 135 | 217 | 104 |
Binary | 10000111 | 11011001 | 1101000 |
Octal | 207 | 331 | 150 |
Examples of css and html codes for elements with #87D968 color. Also use rgb(135,217,104) instead hex code.
.myTextColor { color: #87D968; }
<p style="color:#87D968">This sample text font color is #87D968.</p>
This text font color is #87D968.
.myBgColor { background-color: #87D968; }
<div style="background-color:#87D968">Inner text</div>
This div background color is #87D968.
.myBorderColor { border: 1px solid #87D968; }
<div style="border:3px solid #87D968">Div</div>
This div border color is #87D968.
.myOpacity80 { color: #87D968; opacity: 0.8; }
<p style="color:#87D968;opacity:0.8;">80%</p>
Text with #87D968 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87D968;}
<p style="text-shadow: 3px 3px 1px #87D968">Text here.</p>
This text has shadow with #87D968 color.
.textShadow {text-shadow: 3px 3px 1px #87D968, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87D968, 5px 5px 20px red">Text here.</p>
This text has shadow with #87D968 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87D968, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87D968, Direction=45, Strength=4)">Text</p>
This text has shadow with #87D968 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87D968; -webkit-box-shadow: 1px 1px 3px 2px #87D968; box-shadow: 1px 1px 3px 2px #87D968; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87D968; -webkit-box-shadow: 1px 1px 3px 2px #87D968; box-shadow:1px 1px 3px 2px #87D968;">
Div content here</div>
This text has color #87D968 on black background.
This text has color #87D968 on white background.
This text has black color on #87D968 background.
This text has white color on #87D968 background.