Hex #bcd2ee Color

#bcd2ee
equivalent to

RGB

(188, 210, 238)

Details of #bcd2ee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
188
59.2182
0.59
0.21
83.4201
62.9576
214°
79.3458
210
62.9576
0.60
0.12
-1.4877
0.2792
21°
-5.6347
238
89.9198
0.84
0.00   0.07
-16.2274
0.2968
93°
-11.6257

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10111100
274
188
BC
Green
11010010
322
210
D2
Blue
11101110
356
238
EE

RGB in % of #bcd2ee

%29.56
%33.02
%37.42

CMYK in % of #bcd2ee

%21
%12
%0
%7

Triads of color #bcd2ee

#bcd2ee #d2eebc #eebcee

Similar Colors to #bcd2ee

#bcd2ee #bcebee #bfbcee

Preview Color #bcd2ee on black ground

#bcd2ee is very interesting for text.

Preview Color #bcd2ee on white ground

#bcd2ee is very interesting for text.

CSS Codes #bcd2ee color

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

Text Font Color #bcd2ee

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

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

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

This div background color is #bcd2ee


Border Color #bcd2ee

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

The color of this border is #bcd2ee


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #bcd2ee