Hex #090c0a Color

#090c0a
equivalent to

RGB

(9, 12, 10)

Details of #090c0a

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
9
0.2989
0.39
0.25
3.0977
0.3429
140°
5.8561
12
0.3429
0.14
0.00
-1.1074
0.3052
25°
-1.1368
10
0.3376
0.04
0.17   0.95
0.5121
0.3501
0.6824

Base Numbers

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

RGB in % of #090c0a

%29.03
%38.71
%32.26

CMYK in % of #090c0a

%25
%0
%17
%95

Triads of color #090c0a

#090c0a #0c0a09 #0a090a

Similar Colors to #090c0a

#090c0a #0a0c09 #090c0c

Preview Color #090c0a on black ground

#090c0a is very interesting for text.

Preview Color #090c0a on white ground

#090c0a is very interesting for text.

CSS Codes #090c0a color

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

Text Font Color #090c0a

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

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

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

This div background color is #090c0a


Border Color #090c0a

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

The color of this border is #090c0a


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #090c0a