Hex #a52a2a Color

#a52a2a
equivalent to

RGB

(165, 42, 42)

Details of #a52a2a

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
165
16.7629
0.00
0.00
37.5218
9.8224
31.3408
42
9.8224
0.59
0.75
49.6998
0.5627
75°
40.6263
42
3.2029
0.41
0.75   0.35
30.5403
0.3297
65°
15.8810

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10100101
245
165
A5
Green
101010
52
42
2A
Blue
101010
52
42
2A

RGB in % of #a52a2a

%66.27
%16.87
%16.87

CMYK in % of #a52a2a

%0
%75
%75
%35

Triads of color #a52a2a

#a52a2a #2a2aa5 #2aa52a

Similar Colors to #a52a2a

#a52a2a #a52a68 #a5682a

Preview Color #a52a2a on black ground

#a52a2a is very interesting for text.

Preview Color #a52a2a on white ground

#a52a2a is very interesting for text.

CSS Codes #a52a2a color

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

Text Font Color #a52a2a

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

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

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

This div background color is #a52a2a


Border Color #a52a2a

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

The color of this border is #a52a2a


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #a52a2a