HEX: #87F6D9
RGB: (135,246,217)
#87F6D9 contains mainly green and blue colors. Web safe color of #87F6D9 is #99FFCC (or #9FC).
#87F6D9 color RGB value is (135,246,217).
RGB: (135,246,217) (53%,96%,85%)
R 135 of 255 = 53%
G 246 of 255 = 96%
B 217 of 255 = 85%
R + G + B ~ 78%. #87F6D9 is quite light color.
R + G + B =
135 + 246 + 217 = 598 (100%)
R 135 of 598 ~ 22.58%
G 246 of 598 ~ 41.14%
B 217 of 598 ~ 36.29%
#87F6D9 color CMYK value is (45,0,12,4).
CMYK: (45,0,12,4) C45M0Y12K4 (45%,0%,12%,4%) (0.45/0.00/0.12/0.04)
87 | F6 | D9 | |
---|---|---|---|
RGB | 135 | 246 | 217 |
HSL | 164° | 86.05% | 74.71% |
HSB/HSV | 164° | 45.12% | 96.47% |
CMYK | 45.12% | 0.00% | 11.79% |
3.53% |
HEX | 87 | F6 | D9 |
Decimal | 135 | 246 | 217 |
Binary | 10000111 | 11110110 | 11011001 |
Octal | 207 | 366 | 331 |
Examples of css and html codes for elements with #87F6D9 color. Also use rgb(135,246,217) instead hex code.
.myTextColor { color: #87F6D9; }
<p style="color:#87F6D9">This sample text font color is #87F6D9.</p>
This text font color is #87F6D9.
.myBgColor { background-color: #87F6D9; }
<div style="background-color:#87F6D9">Inner text</div>
This div background color is #87F6D9.
.myBorderColor { border: 1px solid #87F6D9; }
<div style="border:3px solid #87F6D9">Div</div>
This div border color is #87F6D9.
.myOpacity80 { color: #87F6D9; opacity: 0.8; }
<p style="color:#87F6D9;opacity:0.8;">80%</p>
Text with #87F6D9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87F6D9;}
<p style="text-shadow: 3px 3px 1px #87F6D9">Text here.</p>
This text has shadow with #87F6D9 color.
.textShadow {text-shadow: 3px 3px 1px #87F6D9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87F6D9, 5px 5px 20px red">Text here.</p>
This text has shadow with #87F6D9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87F6D9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87F6D9, Direction=45, Strength=4)">Text</p>
This text has shadow with #87F6D9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87F6D9; -webkit-box-shadow: 1px 1px 3px 2px #87F6D9; box-shadow: 1px 1px 3px 2px #87F6D9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87F6D9; -webkit-box-shadow: 1px 1px 3px 2px #87F6D9; box-shadow:1px 1px 3px 2px #87F6D9;">
Div content here</div>
This text has color #87F6D9 on black background.
This text has color #87F6D9 on white background.
This text has black color on #87F6D9 background.
This text has white color on #87F6D9 background.