Hex #6e6e6e Color

#6e6e6e
equivalent to

RGB

(110, 110, 110)

Details of #6e6e6e

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
110
14.8208
0.00
0.00
46.4355
15.5926
39.4875
110
15.5926
0.00
0.00
0.0028
0.3127
-2.1068
110
16.9804
0.43
0.00   0.57
-0.0056
0.3290
43°
2.1542

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1101110
156
110
6E
Green
1101110
156
110
6E
Blue
1101110
156
110
6E

RGB in % of #6e6e6e

%33.33
%33.33
%33.33

CMYK in % of #6e6e6e

%0
%0
%0
%57

Triads of color #6e6e6e

#6e6e6e #6e6e6e #6e6e6e

Similar Colors to #6e6e6e

#6e6e6e #6e6e6e #6e6e6e

Preview Color #6e6e6e on black ground

#6e6e6e is very interesting for text.

Preview Color #6e6e6e on white ground

#6e6e6e is very interesting for text.

CSS Codes #6e6e6e color

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

Text Font Color #6e6e6e

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

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

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

This div background color is #6e6e6e


Border Color #6e6e6e

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

The color of this border is #6e6e6e


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #6e6e6e