Hex #00142c Color

#00142c
equivalent to

RGB

(0, 20, 44)

Details of #00142c

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
0.7048
0.59
1.00
6.1619
0.6822
213°
8.2593
20
0.6822
1.00
0.55
2.3106
0.1824
100°
0.7779
44
2.4774
0.09
0.00   0.83
-18.4627
0.1765
17°
-11.9962

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
10100
24
20
14
Blue
101100
54
44
2C

RGB in % of #00142c

%0.00
%31.25
%68.75

CMYK in % of #00142c

%100
%55
%0
%83

Triads of color #00142c

#00142c #142c00 #2c002c

Similar Colors to #00142c

#00142c #002a2c #02002c

Preview Color #00142c on black ground

#00142c is very interesting for text.

Preview Color #00142c on white ground

#00142c is very interesting for text.

CSS Codes #00142c color

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

Text Font Color #00142c

<p style="color:#00142c">Text here</p>

This sample text font color is #00142c
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 #00142c

<div style="background-color:#00142c">
Div content here</div>

This div background color is #00142c


Border Color #00142c

<div style="border:3px solid #00142c">
Div here</div>

The color of this border is #00142c


Examples Css3

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

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 #00142c">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00142c