Hex #adbb9e Color

#adbb9e
equivalent to

RGB

(173, 187, 158)

Details of #adbb9e

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
173
41.1755
0.25
0.07
74.1216
46.8935
89°
68.4788
187
46.8935
0.18
0.00
-10.1258
0.3235
16°
-12.5078
158
39.2289
0.68
0.16   0.27
13.0688
0.3684
73°
13.9816

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101101
255
173
AD
Green
10111011
273
187
BB
Blue
10011110
236
158
9E

RGB in % of #adbb9e

%33.40
%36.10
%30.50

CMYK in % of #adbb9e

%7
%0
%16
%27

Triads of color #adbb9e

#adbb9e #bb9ead #9ead9e

Similar Colors to #adbb9e

#adbb9e #bbbb9e #9fbb9e

Preview Color #adbb9e on black ground

#adbb9e is very interesting for text.

Preview Color #adbb9e on white ground

#adbb9e is very interesting for text.

CSS Codes #adbb9e color

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

Text Font Color #adbb9e

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

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

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

This div background color is #adbb9e


Border Color #adbb9e

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

The color of this border is #adbb9e


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #adbb9e