Hex #00688b Color

#00688b
equivalent to

RGB

(0, 104, 139)

Details of #00688b

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
9.6105
0.54
1.00
40.8397
11.7647
195°
34.2997
104
11.7647
1.00
0.25
-12.0612
0.2020
100°
-10.0100
139
26.1904
0.27
0.00   0.45
-26.3825
0.2473
55°
-21.2464

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
1101000
150
104
68
Blue
10001011
213
139
8B

RGB in % of #00688b

%0.00
%42.80
%57.20

CMYK in % of #00688b

%100
%25
%0
%45

Triads of color #00688b

#00688b #688b00 #8b008b

Similar Colors to #00688b

#00688b #008b69 #00238b

Preview Color #00688b on black ground

#00688b is very interesting for text.

Preview Color #00688b on white ground

#00688b is very interesting for text.

CSS Codes #00688b color

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

Text Font Color #00688b

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

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

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

This div background color is #00688b


Border Color #00688b

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

The color of this border is #00688b


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00688b