Hex #00060e Color

#00060e
equivalent to

RGB

(0, 6, 14)

Details of #00060e

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
0.1444
0.60
1.00
1.4629
0.1620
214°
4.0244
6
0.1620
1.00
0.57
-0.3910
0.1937
100°
-0.6382
14
0.4391
0.03
0.00   0.95
-3.7585
0.2173
-3.6500

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
110
6
6
6
Blue
1110
16
14
E

RGB in % of #00060e

%0.00
%30.00
%70.00

CMYK in % of #00060e

%100
%57
%0
%95

Triads of color #00060e

#00060e #060e00 #0e000e

Similar Colors to #00060e

#00060e #000d0e #01000e

Preview Color #00060e on black ground

#00060e is very interesting for text.

Preview Color #00060e on white ground

#00060e is very interesting for text.

CSS Codes #00060e color

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

Text Font Color #00060e

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

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

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

This div background color is #00060e


Border Color #00060e

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

The color of this border is #00060e


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00060e