Hex #ff00ff Color

#ff00ff
equivalent to

RGB

(255, 0, 255)

Details of #ff00ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
59.2900
0.83
0.00
60.3199
28.4800
300°
53.3667
0
28.4800
1.00
1.00
98.2542
0.3209
100°
104.9207
255
96.9800
0.50
0.00   0.00
-60.8430
0.1542
100°
-70.3485

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
0
0
0
0
Blue
11111111
377
255
FF

RGB in % of #ff00ff

%50.00
%0.00
%50.00

CMYK in % of #ff00ff

%0
%100
%0
%0

Triads of color #ff00ff

#ff00ff #00ffff #ffffff

Similar Colors to #ff00ff

#ff00ff #8000ff #ff0080

Preview Color #ff00ff on black ground

#ff00ff is very interesting for text.

Preview Color #ff00ff on white ground

#ff00ff is very interesting for text.

CSS Codes #ff00ff color

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

Text Font Color #ff00ff

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

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

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

This div background color is #ff00ff


Border Color #ff00ff

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

The color of this border is #ff00ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff00ff