Hex #556b2f Color

#556b2f
equivalent to

RGB

(85, 107, 47)

Details of #556b2f

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
85
9.5171
0.23
0.21
42.2340
12.6519
82°
35.5695
107
12.6519
0.39
0.00
-18.8284
0.3551
56°
-14.4865
47
4.6298
0.30
0.56   0.58
30.5968
0.4721
42°
17.1836

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1010101
125
85
55
Green
1101011
153
107
6B
Blue
101111
57
47
2F

RGB in % of #556b2f

%35.56
%44.77
%19.67

CMYK in % of #556b2f

%21
%0
%56
%58

Triads of color #556b2f

#556b2f #6b2f55 #2f552f

Similar Colors to #556b2f

#556b2f #6b632f #376b2f

Preview Color #556b2f on black ground

#556b2f is very interesting for text.

Preview Color #556b2f on white ground

#556b2f is very interesting for text.

CSS Codes #556b2f color

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

Text Font Color #556b2f

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

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

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

This div background color is #556b2f


Border Color #556b2f

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

The color of this border is #556b2f


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #556b2f