Hex #010100 Color

#010100
equivalent to

RGB

(1, 1, 0)

Details of #010100

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
1
0.0234
0.17
0.00
0.2544
0.0282
60°
1.6781
1
0.0282
1.00
0.00
-0.1391
0.4193
100°
-0.4507
0
0.0042
0.00
1.00   1.00
0.3785
0.5053
1.0262

Base Numbers

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

RGB in % of #010100

%50.00
%50.00
%0.00

CMYK in % of #010100

%0
%0
%100
%100

Triads of color #010100

#010100 #010001 #000100

Similar Colors to #010100

#010100 #010100 #010100

Preview Color #010100 on black ground

#010100 is very interesting for text.

Preview Color #010100 on white ground

#010100 is very interesting for text.

CSS Codes #010100 color

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

Text Font Color #010100

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

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

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

This div background color is #010100


Border Color #010100

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

The color of this border is #010100


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #010100