Hex #d2ecfc Color

#d2ecfc
equivalent to

RGB

(210, 236, 252)

Details of #d2ecfc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
210
74.1445
0.56
0.17
92.0073
80.7208
203°
89.8448
236
80.7208
0.88
0.06
-5.2744
0.2867
17°
-9.9206
252
103.7683
0.91
0.00   0.01
-10.5985
0.3121
99°
-5.5633

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11010010
322
210
D2
Green
11101100
354
236
EC
Blue
11111100
374
252
FC

RGB in % of #d2ecfc

%30.09
%33.81
%36.10

CMYK in % of #d2ecfc

%17
%6
%0
%1

Triads of color #d2ecfc

#d2ecfc #ecfcd2 #fcd2fc

Similar Colors to #d2ecfc

#d2ecfc #d2fcf7 #d2d7fc

Preview Color #d2ecfc on black ground

#d2ecfc is very interesting for text.

Preview Color #d2ecfc on white ground

#d2ecfc is very interesting for text.

CSS Codes #d2ecfc color

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

Text Font Color #d2ecfc

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

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

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

This div background color is #d2ecfc


Border Color #d2ecfc

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

The color of this border is #d2ecfc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #d2ecfc