Hex #040b0c Color

#040b0c
equivalent to

RGB

(4, 11, 12)

Details of #040b0c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
4
0.2361
0.52
0.67
2.6349
0.2917
188°
5.4009
11
0.2917
0.50
0.08
-1.6857
0.2568
67°
-1.6484
12
0.3917
0.03
0.00   0.95
-1.0595
0.3172
-0.5177

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
100
4
4
4
Green
1011
13
11
B
Blue
1100
14
12
C

RGB in % of #040b0c

%14.81
%40.74
%44.44

CMYK in % of #040b0c

%67
%8
%0
%95

Triads of color #040b0c

#040b0c #0b0c04 #0c040c

Similar Colors to #040b0c

#040b0c #040c09 #04070c

Preview Color #040b0c on black ground

#040b0c is very interesting for text.

Preview Color #040b0c on white ground

#040b0c is very interesting for text.

CSS Codes #040b0c color

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

Text Font Color #040b0c

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

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

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

This div background color is #040b0c


Border Color #040b0c

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

The color of this border is #040b0c


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #040b0c