Hex #e066ff Color

#e066ff
equivalent to

RGB

(224, 102, 255)

Details of #e066ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
224
53.5418
0.80
0.12
63.8112
32.5700
288°
57.0702
102
32.5700
1.00
0.60
68.9273
0.2907
60°
67.5917
255
98.0724
0.70
0.00   0.00
-55.5433
0.1768
100°
-61.9013

Base Numbers

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

RGB in % of #e066ff

%38.55
%17.56
%43.89

CMYK in % of #e066ff

%12
%60
%0
%0

Triads of color #e066ff

#e066ff #66ffe0 #ffe0ff

Similar Colors to #e066ff

#e066ff #9466ff #ff66d2

Preview Color #e066ff on black ground

#e066ff is very interesting for text.

Preview Color #e066ff on white ground

#e066ff is very interesting for text.

CSS Codes #e066ff color

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

Text Font Color #e066ff

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

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

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

This div background color is #e066ff


Border Color #e066ff

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

The color of this border is #e066ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #e066ff