Hex #040a0d Color

#040a0d
equivalent to

RGB

(4, 10, 13)

Details of #040a0d

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
4
0.2313
0.56
0.69
2.4565
0.2720
200°
5.2149
10
0.2720
0.53
0.23
-1.1153
0.2502
69°
-1.2104
13
0.4211
0.03
0.00   0.95
-1.7874
0.2942
-1.1352

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
100
4
4
4
Green
1010
12
10
A
Blue
1101
15
13
D

RGB in % of #040a0d

%14.81
%37.04
%48.15

CMYK in % of #040a0d

%69
%23
%0
%95

Triads of color #040a0d

#040a0d #0a0d04 #0d040d

Similar Colors to #040a0d

#040a0d #040d0c #04060d

Preview Color #040a0d on black ground

#040a0d is very interesting for text.

Preview Color #040a0d on white ground

#040a0d is very interesting for text.

CSS Codes #040a0d color

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

Text Font Color #040a0d

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

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

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

This div background color is #040a0d


Border Color #040a0d

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

The color of this border is #040a0d


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #040a0d