Hex #090c0c Color

#090c0c
equivalent to

RGB

(9, 12, 12)

Details of #090c0c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
9
0.3105
0.50
0.25
3.1395
0.3476
180°
5.8955
12
0.3476
0.14
0.00
-0.8136
0.2939
25°
-0.9162
12
0.3985
0.04
0.00   0.95
-0.2876
0.3289
0.1201

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1001
11
9
9
Green
1100
14
12
C
Blue
1100
14
12
C

RGB in % of #090c0c

%27.27
%36.36
%36.36

CMYK in % of #090c0c

%25
%0
%0
%95

Triads of color #090c0c

#090c0c #0c0c09 #0c090c

Similar Colors to #090c0c

#090c0c #090c0b #090b0c

Preview Color #090c0c on black ground

#090c0c is very interesting for text.

Preview Color #090c0c on white ground

#090c0c is very interesting for text.

CSS Codes #090c0c color

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

Text Font Color #090c0c

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

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

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

This div background color is #090c0c


Border Color #090c0c

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

The color of this border is #090c0c


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #090c0c