Hex #000001 Color

#000001
equivalent to

RGB

(0, 0, 1)

Details of #000001

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
0.0055
0.67
1.00
0.0198
0.0022
240°
0.4681
0
0.0022
1.00
1.00
0.1391
0.1500
100°
1.2698
1
0.0289
0.00
0.00   1.00
-0.3785
0.0600
-3.3249

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
0
0
0
0
Blue
1
1
1
1

RGB in % of #000001

%0.00
%0.00
%100.00

CMYK in % of #000001

%100
%100
%0
%100

Triads of color #000001

#000001 #000100 #010001

Similar Colors to #000001

#000001 #000101 #010001

Preview Color #000001 on black ground

#000001 is very interesting for text.

Preview Color #000001 on white ground

#000001 is very interesting for text.

CSS Codes #000001 color

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

Text Font Color #000001

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

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

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

This div background color is #000001


Border Color #000001

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

The color of this border is #000001


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #000001