Hex #aa683a Color

#aa683a
equivalent to

RGB

(170, 104, 58)

Details of #aa683a

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
170
22.2916
0.07
0.00
50.3960
18.7522
25°
43.3038
104
18.7522
0.49
0.39
22.1559
0.4694
66°
16.1055
58
6.4476
0.45
0.66   0.33
36.5210
0.3949
67°
21.4873

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101010
252
170
AA
Green
1101000
150
104
68
Blue
111010
72
58
3A

RGB in % of #aa683a

%51.20
%31.33
%17.47

CMYK in % of #aa683a

%0
%39
%66
%33

Triads of color #aa683a

#aa683a #683aaa #3aaa3a

Similar Colors to #aa683a

#aa683a #aa3a44 #aaa03a

Preview Color #aa683a on black ground

#aa683a is very interesting for text.

Preview Color #aa683a on white ground

#aa683a is very interesting for text.

CSS Codes #aa683a color

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

Text Font Color #aa683a

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

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

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

This div background color is #aa683a


Border Color #aa683a

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

The color of this border is #aa683a


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #aa683a