Hex #708090 Color

#708090
equivalent to

RGB

(112, 128, 144)

Details of #708090

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
112
19.4353
0.58
0.22
52.8363
20.8967
210°
45.7129
128
20.8967
0.13
0.11
-2.1386
0.2787
22°
-4.1063
144
29.3947
0.50
0.00   0.44
-10.5774
0.2997
56°
-6.1128

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1110000
160
112
70
Green
10000000
200
128
80
Blue
10010000
220
144
90

RGB in % of #708090

%29.17
%33.33
%37.50

CMYK in % of #708090

%22
%11
%0
%44

Triads of color #708090

#708090 #809070 #907090

Similar Colors to #708090

#708090 #709090 #707090

Preview Color #708090 on black ground

#708090 is very interesting for text.

Preview Color #708090 on white ground

#708090 is very interesting for text.

CSS Codes #708090 color

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

Text Font Color #708090

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

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

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

This div background color is #708090


Border Color #708090

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

The color of this border is #708090


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #708090