Hex #ff82ab Color

#ff82ab
equivalent to

RGB

(255, 130, 171)

Details of #ff82ab

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
56.5733
0.95
0.00
69.5873
40.1655
340°
63.3763
130
40.1655
1.00
0.49
51.6814
0.4040
49°
48.4310
171
43.2991
0.75
0.33   0.00
0.4902
0.2868
100°
3.8700

Base Numbers

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

RGB in % of #ff82ab

%45.86
%23.38
%30.76

CMYK in % of #ff82ab

%0
%49
%33
%0

Triads of color #ff82ab

#ff82ab #82abff #abffab

Similar Colors to #ff82ab

#ff82ab #ff82ea #ff9882

Preview Color #ff82ab on black ground

#ff82ab is very interesting for text.

Preview Color #ff82ab on white ground

#ff82ab is very interesting for text.

CSS Codes #ff82ab color

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

Text Font Color #ff82ab

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

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

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

This div background color is #ff82ab


Border Color #ff82ab

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

The color of this border is #ff82ab


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ff82ab