Hex #87cefa Color

#87cefa
equivalent to

RGB

(135, 206, 250)

Details of #87cefa

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
135
49.3183
0.56
0.46
79.7250
56.1956
203°
74.9637
206
56.1956
0.92
0.18
-10.8234
0.2415
46°
-13.7518
250
98.6900
0.75
0.00   0.02
-28.5103
0.2752
98°
-25.5532

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10000111
207
135
87
Green
11001110
316
206
CE
Blue
11111010
372
250
FA

RGB in % of #87cefa

%22.84
%34.86
%42.30

CMYK in % of #87cefa

%46
%18
%0
%2

Triads of color #87cefa

#87cefa #cefa87 #fa87fa

Similar Colors to #87cefa

#87cefa #87faed #8795fa

Preview Color #87cefa on black ground

#87cefa is very interesting for text.

Preview Color #87cefa on white ground

#87cefa is very interesting for text.

CSS Codes #87cefa color

.mybgcolor {background-color:#87cefa; }
.myforecolor {color:#87cefa; }
.mybordercolor {border:3px solid #87cefa; }

Text Font Color #87cefa

<p style="color:#87cefa">Text here</p>

This sample text font color is #87cefa
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #87cefa

<div style="background-color:#87cefa">
Div content here</div>

This div background color is #87cefa


Border Color #87cefa

<div style="border:3px solid #87cefa">
Div here</div>

The color of this border is #87cefa


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #87cefa; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #87cefa;
-webkit-box-shadow: 1px 1px 3px 2px #87cefa;
box-shadow:         1px 1px 3px 2px #87cefa; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #87cefa">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<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>

The shadow of div box using color #87cefa