HEX: #87E1BF
RGB: (135,225,191)
#87E1BF contains mainly green and blue colors. Web safe color of #87E1BF is #99CCCC (or #9CC).
#87E1BF color RGB value is (135,225,191).
RGB: (135,225,191) (53%,88%,75%)
R 135 of 255 = 53%
G 225 of 255 = 88%
B 191 of 255 = 75%
R + G + B ~ 72%. #87E1BF is quite light color.
R + G + B =
135 + 225 + 191 = 551 (100%)
R 135 of 551 ~ 24.5%
G 225 of 551 ~ 40.83%
B 191 of 551 ~ 34.66%
#87E1BF color CMYK value is (40,0,15,12).
CMYK: (40,0,15,12) C40M0Y15K12 (40%,0%,15%,12%) (0.40/0.00/0.15/0.12)
87 | E1 | BF | |
---|---|---|---|
RGB | 135 | 225 | 191 |
HSL | 157° | 60.00% | 70.59% |
HSB/HSV | 157° | 40.00% | 88.24% |
CMYK | 40.00% | 0.00% | 15.11% |
11.76% |
HEX | 87 | E1 | BF |
Decimal | 135 | 225 | 191 |
Binary | 10000111 | 11100001 | 10111111 |
Octal | 207 | 341 | 277 |
Examples of css and html codes for elements with #87E1BF color. Also use rgb(135,225,191) instead hex code.
.myTextColor { color: #87E1BF; }
<p style="color:#87E1BF">This sample text font color is #87E1BF.</p>
This text font color is #87E1BF.
.myBgColor { background-color: #87E1BF; }
<div style="background-color:#87E1BF">Inner text</div>
This div background color is #87E1BF.
.myBorderColor { border: 1px solid #87E1BF; }
<div style="border:3px solid #87E1BF">Div</div>
This div border color is #87E1BF.
.myOpacity80 { color: #87E1BF; opacity: 0.8; }
<p style="color:#87E1BF;opacity:0.8;">80%</p>
Text with #87E1BF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87E1BF;}
<p style="text-shadow: 3px 3px 1px #87E1BF">Text here.</p>
This text has shadow with #87E1BF color.
.textShadow {text-shadow: 3px 3px 1px #87E1BF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87E1BF, 5px 5px 20px red">Text here.</p>
This text has shadow with #87E1BF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87E1BF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87E1BF, Direction=45, Strength=4)">Text</p>
This text has shadow with #87E1BF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87E1BF; -webkit-box-shadow: 1px 1px 3px 2px #87E1BF; box-shadow: 1px 1px 3px 2px #87E1BF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87E1BF; -webkit-box-shadow: 1px 1px 3px 2px #87E1BF; box-shadow:1px 1px 3px 2px #87E1BF;">
Div content here</div>
This text has color #87E1BF on black background.
This text has color #87E1BF on white background.
This text has black color on #87E1BF background.
This text has white color on #87E1BF background.