Hex #86b5ed Color

#86b5ed
equivalent to

RGB

(134, 181, 237)

Details of #86b5ed

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
134
41.6415
0.59
0.43
72.3823
44.2305
213°
66.5060
181
44.2305
0.74
0.24
-1.2070
0.2416
43°
-4.6209
237
86.4634
0.73
0.00   0.07
-32.8223
0.2567
93°
-30.5004

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10000110
206
134
86
Green
10110101
265
181
B5
Blue
11101101
355
237
ED

RGB in % of #86b5ed

%24.28
%32.79
%42.93

CMYK in % of #86b5ed

%43
%24
%0
%7

Triads of color #86b5ed

#86b5ed #b5ed86 #ed86ed

Similar Colors to #86b5ed

#86b5ed #86e9ed #8b86ed

Preview Color #86b5ed on black ground

#86b5ed is very interesting for text.

Preview Color #86b5ed on white ground

#86b5ed is very interesting for text.

CSS Codes #86b5ed color

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

Text Font Color #86b5ed

<p style="color:#86b5ed">Text here</p>

This sample text font color is #86b5ed
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 #86b5ed

<div style="background-color:#86b5ed">
Div content here</div>

This div background color is #86b5ed


Border Color #86b5ed

<div style="border:3px solid #86b5ed">
Div here</div>

The color of this border is #86b5ed


Examples Css3

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

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 #86b5ed">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #86b5ed;
  -webkit-box-shadow: 1px 1px 3px 2px #86b5ed;
  box-shadow:         1px 1px 3px 2px #86b5ed;">
Div content here</div>

The shadow of div box using color #86b5ed