Hex #000101 Color

#000101
equivalent to

RGB

(0, 1, 1)

Details of #000101

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
0.0163
0.50
1.00
0.2159
0.0239
180°
1.5460
1
0.0239
1.00
0.00
-0.2615
0.2247
100°
-0.8196
1
0.0325
0.00
0.00   1.00
-0.0922
0.3287
-0.1626

Base Numbers

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

RGB in % of #000101

%0.00
%50.00
%50.00

CMYK in % of #000101

%100
%0
%0
%100

Triads of color #000101

#000101 #010100 #010001

Similar Colors to #000101

#000101 #000101 #000101

Preview Color #000101 on black ground

#000101 is very interesting for text.

Preview Color #000101 on white ground

#000101 is very interesting for text.

CSS Codes #000101 color

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

Text Font Color #000101

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

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

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

This div background color is #000101


Border Color #000101

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

The color of this border is #000101


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #000101