Hex #0f0f0c Color

#0f0f0c
equivalent to

RGB

(15, 15, 12)

Details of #0f0f0c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
15
0.4342
0.17
0.00
4.2432
0.4698
60°
6.8538
15
0.4698
0.11
0.00
-0.5037
0.3290
20°
-0.6863
12
0.4156
0.05
0.20   0.94
1.3712
0.3560
1.2036

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1111
17
15
F
Green
1111
17
15
F
Blue
1100
14
12
C

RGB in % of #0f0f0c

%35.71
%35.71
%28.57

CMYK in % of #0f0f0c

%0
%0
%20
%94

Triads of color #0f0f0c

#0f0f0c #0f0c0f #0c0f0c

Similar Colors to #0f0f0c

#0f0f0c #0f0e0c #0e0f0c

Preview Color #0f0f0c on black ground

#0f0f0c is very interesting for text.

Preview Color #0f0f0c on white ground

#0f0f0c is very interesting for text.

CSS Codes #0f0f0c color

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

Text Font Color #0f0f0c

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

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

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

This div background color is #0f0f0c


Border Color #0f0f0c

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

The color of this border is #0f0f0c


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #0f0f0c