Hex #00224b Color

#00224b
equivalent to

RGB

(0, 34, 75)

Details of #00224b

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
1.8420
0.59
1.00
13.5438
1.6521
213°
12.8532
34
1.6521
1.00
0.55
6.9602
0.1776
100°
3.0882
75
6.8784
0.15
0.00   0.71
-28.7161
0.1593
29°
-22.7203

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
100010
42
34
22
Blue
1001011
113
75
4B

RGB in % of #00224b

%0.00
%31.19
%68.81

CMYK in % of #00224b

%100
%55
%0
%71

Triads of color #00224b

#00224b #224b00 #4b004b

Similar Colors to #00224b

#00224b #00484b #04004b

Preview Color #00224b on black ground

#00224b is very interesting for text.

Preview Color #00224b on white ground

#00224b is very interesting for text.

CSS Codes #00224b color

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

Text Font Color #00224b

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

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

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

This div background color is #00224b


Border Color #00224b

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

The color of this border is #00224b


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00224b