Hex #ab82ff Color

#ab82ff
equivalent to

RGB

(171, 130, 255)

Details of #ab82ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
171
42.8272
0.72
0.33
63.2131
31.8432
260°
56.4298
130
31.8432
1.00
0.49
41.8864
0.2473
49°
36.7202
255
98.4969
0.75
0.00   0.00
-56.8529
0.1839
100°
-63.9512

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101011
253
171
AB
Green
10000010
202
130
82
Blue
11111111
377
255
FF

RGB in % of #ab82ff

%30.76
%23.38
%45.86

CMYK in % of #ab82ff

%33
%49
%0
%0

Triads of color #ab82ff

#ab82ff #82ffab #ffabff

Similar Colors to #ab82ff

#ab82ff #8298ff #ea82ff

Preview Color #ab82ff on black ground

#ab82ff is very interesting for text.

Preview Color #ab82ff on white ground

#ab82ff is very interesting for text.

CSS Codes #ab82ff color

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

Text Font Color #ab82ff

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

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

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

This div background color is #ab82ff


Border Color #ab82ff

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

The color of this border is #ab82ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ab82ff