Hex #00008b Color

#00008b
equivalent to

RGB

(0, 0, 139)

Details of #00008b

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
4.6602
0.67
1.00
14.7572
1.8641
240°
13.6531
0
1.8641
1.00
1.00
50.4293
0.1500
100°
37.0341
139
24.5403
0.27
0.00   0.45
-68.6833
0.0600
55°
-96.9721

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
0
0
0
0
Blue
10001011
213
139
8B

RGB in % of #00008b

%0.00
%0.00
%100.00

CMYK in % of #00008b

%100
%100
%0
%45

Triads of color #00008b

#00008b #008b00 #8b008b

Similar Colors to #00008b

#00008b #00468b #46008b

Preview Color #00008b on black ground

#00008b is very interesting for text.

Preview Color #00008b on white ground

#00008b is very interesting for text.

CSS Codes #00008b color

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

Text Font Color #00008b

<p style="color:#00008b">Text here</p>

This sample text font color is #00008b
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 #00008b

<div style="background-color:#00008b">
Div content here</div>

This div background color is #00008b


Border Color #00008b

<div style="border:3px solid #00008b">
Div here</div>

The color of this border is #00008b


Examples Css3

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

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 #00008b">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00008b