HEX: #87EDFF
RGB: (135,237,255)
#87EDFF contains mainly green and blue colors. Web safe color of #87EDFF is #99FFFF (or #9FF).
#87EDFF color RGB value is (135,237,255).
RGB: (135,237,255) (53%,93%,100%)
R 135 of 255 = 53%
G 237 of 255 = 93%
B 255 of 255 = 100%
R + G + B ~ 82%. #87EDFF is quite light color.
R + G + B =
135 + 237 + 255 = 627 (100%)
R 135 of 627 ~ 21.53%
G 237 of 627 ~ 37.8%
B 255 of 627 ~ 40.67%
#87EDFF color CMYK value is (47,7,0,0).
CMYK: (47,7,0,0) C47M7Y0K0 (47%,7%,0%,0%) (0.47/0.07/0.00/0.00)
87 | ED | FF | |
---|---|---|---|
RGB | 135 | 237 | 255 |
HSL | 189° | 100.00% | 76.47% |
HSB/HSV | 189° | 47.06% | 100.00% |
CMYK | 47.06% | 7.06% | 0.00% |
0.00% |
HEX | 87 | ED | FF |
Decimal | 135 | 237 | 255 |
Binary | 10000111 | 11101101 | 11111111 |
Octal | 207 | 355 | 377 |
Examples of css and html codes for elements with #87EDFF color. Also use rgb(135,237,255) instead hex code.
.myTextColor { color: #87EDFF; }
<p style="color:#87EDFF">This sample text font color is #87EDFF.</p>
This text font color is #87EDFF.
.myBgColor { background-color: #87EDFF; }
<div style="background-color:#87EDFF">Inner text</div>
This div background color is #87EDFF.
.myBorderColor { border: 1px solid #87EDFF; }
<div style="border:3px solid #87EDFF">Div</div>
This div border color is #87EDFF.
.myOpacity80 { color: #87EDFF; opacity: 0.8; }
<p style="color:#87EDFF;opacity:0.8;">80%</p>
Text with #87EDFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87EDFF;}
<p style="text-shadow: 3px 3px 1px #87EDFF">Text here.</p>
This text has shadow with #87EDFF color.
.textShadow {text-shadow: 3px 3px 1px #87EDFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87EDFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #87EDFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87EDFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87EDFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #87EDFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87EDFF; -webkit-box-shadow: 1px 1px 3px 2px #87EDFF; box-shadow: 1px 1px 3px 2px #87EDFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87EDFF; -webkit-box-shadow: 1px 1px 3px 2px #87EDFF; box-shadow:1px 1px 3px 2px #87EDFF;">
Div content here</div>
This text has color #87EDFF on black background.
This text has color #87EDFF on white background.
This text has black color on #87EDFF background.
This text has white color on #87EDFF background.