Hex #000080 Color

#000080
equivalent to

RGB

(0, 0, 128)

Details of #000080

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
3.8963
0.67
1.00
12.9753
1.5585
240°
12.4840
0
1.5585
1.00
1.00
47.5078
0.1500
100°
33.8629
128
20.5175
0.25
0.00   0.50
-64.7043
0.0600
50°
-88.6685

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
0
0
0
0
Blue
10000000
200
128
80

RGB in % of #000080

%0.00
%0.00
%100.00

CMYK in % of #000080

%100
%100
%0
%50

Triads of color #000080

#000080 #008000 #800080

Similar Colors to #000080

#000080 #004080 #400080

Preview Color #000080 on black ground

#000080 is very interesting for text.

Preview Color #000080 on white ground

#000080 is very interesting for text.

CSS Codes #000080 color

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

Text Font Color #000080

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

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

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

This div background color is #000080


Border Color #000080

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

The color of this border is #000080


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #000080