Hex #a0522d Color

#a0522d
equivalent to

RGB

(160, 82, 45)

Details of #a0522d

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
160
17.9882
0.05
0.00
43.7961
13.6976
19°
37.0103
82
13.6976
0.56
0.49
29.3269
0.5016
72°
21.9886
45
4.1785
0.40
0.72   0.37
35.6365
0.3819
63°
19.2152

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10100000
240
160
A0
Green
1010010
122
82
52
Blue
101101
55
45
2D

RGB in % of #a0522d

%55.75
%28.57
%15.68

CMYK in % of #a0522d

%0
%49
%72
%37

Triads of color #a0522d

#a0522d #522da0 #2da02d

Similar Colors to #a0522d

#a0522d #a02d42 #a08c2d

Preview Color #a0522d on black ground

#a0522d is very interesting for text.

Preview Color #a0522d on white ground

#a0522d is very interesting for text.

CSS Codes #a0522d color

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

Text Font Color #a0522d

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

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

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

This div background color is #a0522d


Border Color #a0522d

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

The color of this border is #a0522d


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #a0522d