Hex #020201 Color

#020201
equivalent to

RGB

(2, 2, 1)

Details of #020201

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
2
0.0522
0.17
0.00
0.5286
0.0585
60°
2.4190
2
0.0585
0.33
0.00
-0.1390
0.3529
50°
-0.3796
1
0.0373
0.01
0.50   0.99
0.3784
0.3954
0.7804

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10
2
2
2
Green
10
2
2
2
Blue
1
1
1
1

RGB in % of #020201

%40.00
%40.00
%20.00

CMYK in % of #020201

%0
%0
%50
%99

Triads of color #020201

#020201 #020102 #010201

Similar Colors to #020201

#020201 #020201 #020201

Preview Color #020201 on black ground

#020201 is very interesting for text.

Preview Color #020201 on white ground

#020201 is very interesting for text.

CSS Codes #020201 color

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

Text Font Color #020201

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

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

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

This div background color is #020201


Border Color #020201

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

The color of this border is #020201


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #020201