Hex #e0ffff Color

#e0ffff
equivalent to

RGB

(224, 255, 255)

Details of #e0ffff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
224
84.5505
0.50
0.12
97.8681
94.5873
180°
97.2560
255
94.5873
1.00
0.00
-9.9393
0.2940
12°
-15.0167
255
108.4086
0.94
0.00   0.00
-3.3847
0.3289
100°
2.0130

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11100000
340
224
E0
Green
11111111
377
255
FF
Blue
11111111
377
255
FF

RGB in % of #e0ffff

%30.52
%34.74
%34.74

CMYK in % of #e0ffff

%12
%0
%0
%0

Triads of color #e0ffff

#e0ffff #ffffe0 #ffe0ff

Similar Colors to #e0ffff

#e0ffff #e0fff0 #e0f0ff

Preview Color #e0ffff on black ground

#e0ffff is very interesting for text.

Preview Color #e0ffff on white ground

#e0ffff is very interesting for text.

CSS Codes #e0ffff color

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

Text Font Color #e0ffff

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

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

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

This div background color is #e0ffff


Border Color #e0ffff

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

The color of this border is #e0ffff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #e0ffff