Hex #adadad Color

#adadad
equivalent to

RGB

(173, 173, 173)

Details of #adadad

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
173
39.7200
0.00
0.00
70.7249
41.7885
64.6440
173
41.7885
0.00
0.00
0.0039
0.3127
-3.4489
173
45.5077
0.68
0.00   0.32
-0.0078
0.3290
68°
3.5265

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101101
255
173
AD
Green
10101101
255
173
AD
Blue
10101101
255
173
AD

RGB in % of #adadad

%33.33
%33.33
%33.33

CMYK in % of #adadad

%0
%0
%0
%32

Triads of color #adadad

#adadad #adadad #adadad

Similar Colors to #adadad

#adadad #adadad #adadad

Preview Color #adadad on black ground

#adadad is very interesting for text.

Preview Color #adadad on white ground

#adadad is very interesting for text.

CSS Codes #adadad color

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

Text Font Color #adadad

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

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

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

This div background color is #adadad


Border Color #adadad

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

The color of this border is #adadad


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #adadad