Hex #d1eeee Color

#d1eeee
equivalent to

RGB

(209, 238, 238)

Details of #d1eeee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
209
72.3016
0.50
0.12
92.0771
80.8774
180°
89.9319
238
80.8774
0.46
0.00
-9.4206
0.2941
12°
-13.8734
238
92.6891
0.88
0.00   0.07
-3.2083
0.3289
93°
1.8656

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11010001
321
209
D1
Green
11101110
356
238
EE
Blue
11101110
356
238
EE

RGB in % of #d1eeee

%30.51
%34.74
%34.74

CMYK in % of #d1eeee

%12
%0
%0
%7

Triads of color #d1eeee

#d1eeee #eeeed1 #eed1ee

Similar Colors to #d1eeee

#d1eeee #d1eee0 #d1e0ee

Preview Color #d1eeee on black ground

#d1eeee is very interesting for text.

Preview Color #d1eeee on white ground

#d1eeee is very interesting for text.

CSS Codes #d1eeee color

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

Text Font Color #d1eeee

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

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

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

This div background color is #d1eeee


Border Color #d1eeee

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

The color of this border is #d1eeee


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #d1eeee