Hex #050505 Color

#050505
equivalent to

RGB

(5, 5, 5)

Details of #050505

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
5
0.1443
0.00
0.00
1.3709
0.1518
3.8957
5
0.1518
0.00
0.00
0.0002
0.3127
-0.2078
5
0.1653
0.02
0.00   0.98
-0.0004
0.3290
0.2125

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
101
5
5
5
Green
101
5
5
5
Blue
101
5
5
5

RGB in % of #050505

%33.33
%33.33
%33.33

CMYK in % of #050505

%0
%0
%0
%98

Triads of color #050505

#050505 #050505 #050505

Similar Colors to #050505

#050505 #050505 #050505

Preview Color #050505 on black ground

#050505 is very interesting for text.

Preview Color #050505 on white ground

#050505 is very interesting for text.

CSS Codes #050505 color

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

Text Font Color #050505

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

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

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

This div background color is #050505


Border Color #050505

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

The color of this border is #050505


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #050505