Hex #ffe1ff Color

#ffe1ff
equivalent to

RGB

(255, 225, 255)

Details of #ffe1ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
86.2152
0.83
0.00
92.7205
82.3304
300°
90.7361
225
82.3304
1.00
0.12
15.3844
0.3141
12°
10.8185
255
105.9551
0.94
0.00   0.00
-10.7418
0.2999
100°
-5.6953

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11100001
341
225
E1
Blue
11111111
377
255
FF

RGB in % of #ffe1ff

%34.69
%30.61
%34.69

CMYK in % of #ffe1ff

%0
%12
%0
%0

Triads of color #ffe1ff

#ffe1ff #e1ffff #ffffff

Similar Colors to #ffe1ff

#ffe1ff #f0e1ff #ffe1f0

Preview Color #ffe1ff on black ground

#ffe1ff is very interesting for text.

Preview Color #ffe1ff on white ground

#ffe1ff is very interesting for text.

CSS Codes #ffe1ff color

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

Text Font Color #ffe1ff

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

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

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

This div background color is #ffe1ff


Border Color #ffe1ff

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

The color of this border is #ffe1ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ffe1ff