Hex #ff83fa Color

#ff83fa
equivalent to

RGB

(255, 131, 250)

Details of #ff83fa

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
66.6116
0.84
0.00
72.4915
44.3947
302°
66.6294
131
44.3947
1.00
0.49
62.6979
0.3226
49°
61.8512
250
95.5007
0.76
0.02   0.00
-38.8740
0.2150
100°
-38.3103

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
10000011
203
131
83
Blue
11111010
372
250
FA

RGB in % of #ff83fa

%40.09
%20.60
%39.31

CMYK in % of #ff83fa

%0
%49
%2
%0

Triads of color #ff83fa

#ff83fa #83faff #fafffa

Similar Colors to #ff83fa

#ff83fa #c683ff #ff83bc

Preview Color #ff83fa on black ground

#ff83fa is very interesting for text.

Preview Color #ff83fa on white ground

#ff83fa is very interesting for text.

CSS Codes #ff83fa color

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

Text Font Color #ff83fa

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

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

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

This div background color is #ff83fa


Border Color #ff83fa

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

The color of this border is #ff83fa


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff83fa