HEX: #87CEFA
RGB: (135,206,250)
Color name is LightSkyBlue. #87CEFA contains mainly green and blue colors. Web safe color of #87CEFA is #99CCFF (or #9CF).
#87CEFA color RGB value is (135,206,250).
RGB: (135,206,250) (53%,81%,98%)
R 135 of 255 = 53%
G 206 of 255 = 81%
B 250 of 255 = 98%
R + G + B ~ 77%. #87CEFA is quite light color.
R + G + B =
135 + 206 + 250 = 591 (100%)
R 135 of 591 ~ 22.84%
G 206 of 591 ~ 34.86%
B 250 of 591 ~ 42.3%
#87CEFA color CMYK value is (46,18,0,2).
CMYK: (46,18,0,2) C46M18Y0K2 (46%,18%,0%,2%) (0.46/0.18/0.00/0.02)
87 | CE | FA | |
---|---|---|---|
RGB | 135 | 206 | 250 |
HSL | 203° | 92.00% | 75.49% |
HSB/HSV | 203° | 46.00% | 98.04% |
CMYK | 46.00% | 17.60% | 0.00% |
1.96% |
HEX | 87 | CE | FA |
Decimal | 135 | 206 | 250 |
Binary | 10000111 | 11001110 | 11111010 |
Octal | 207 | 316 | 372 |
Examples of css and html codes for elements with #87CEFA color. Also use rgb(135,206,250) instead hex code.
.myTextColor { color: #87CEFA; }
<p style="color:#87CEFA">This sample text font color is #87CEFA.</p>
This text font color is #87CEFA.
.myBgColor { background-color: #87CEFA; }
<div style="background-color:#87CEFA">Inner text</div>
This div background color is #87CEFA.
.myBorderColor { border: 1px solid #87CEFA; }
<div style="border:3px solid #87CEFA">Div</div>
This div border color is #87CEFA.
.myOpacity80 { color: #87CEFA; opacity: 0.8; }
<p style="color:#87CEFA;opacity:0.8;">80%</p>
Text with #87CEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87CEFA;}
<p style="text-shadow: 3px 3px 1px #87CEFA">Text here.</p>
This text has shadow with #87CEFA color.
.textShadow {text-shadow: 3px 3px 1px #87CEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87CEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #87CEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87CEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87CEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #87CEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87CEFA; -webkit-box-shadow: 1px 1px 3px 2px #87CEFA; box-shadow: 1px 1px 3px 2px #87CEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87CEFA; -webkit-box-shadow: 1px 1px 3px 2px #87CEFA; box-shadow:1px 1px 3px 2px #87CEFA;">
Div content here</div>
This text has color #87CEFA on black background.
This text has color #87CEFA on white background.
This text has black color on #87CEFA background.
This text has white color on #87CEFA background.