HEX: #708CAA
RGB: (112,140,170)
#708CAA contains red, green and blue colors in about the same proportion. Web safe color of #708CAA is #669999 (or #699).
#708CAA color RGB value is (112,140,170).
RGB: (112,140,170) (44%,55%,67%)
R 112 of 255 = 44%
G 140 of 255 = 55%
B 170 of 255 = 67%
R + G + B ~ 55%. #708CAA is middle color (not dark and not light).
R + G + B =
112 + 140 + 170 = 422 (100%)
R 112 of 422 ~ 26.54%
G 140 of 422 ~ 33.18%
B 170 of 422 ~ 40.28%
#708CAA color CMYK value is (34,18,0,33).
CMYK: (34,18,0,33) C34M18Y0K33 (34%,18%,0%,33%) (0.34/0.18/0.00/0.33)
70 | 8C | AA | |
---|---|---|---|
RGB | 112 | 140 | 170 |
HSL | 211° | 25.44% | 55.29% |
HSB/HSV | 211° | 34.12% | 66.67% |
CMYK | 34.12% | 17.65% | 0.00% |
33.33% |
HEX | 70 | 8C | AA |
Decimal | 112 | 140 | 170 |
Binary | 1110000 | 10001100 | 10101010 |
Octal | 160 | 214 | 252 |
Examples of css and html codes for elements with #708CAA color. Also use rgb(112,140,170) instead hex code.
.myTextColor { color: #708CAA; }
<p style="color:#708CAA">This sample text font color is #708CAA.</p>
This text font color is #708CAA.
.myBgColor { background-color: #708CAA; }
<div style="background-color:#708CAA">Inner text</div>
This div background color is #708CAA.
.myBorderColor { border: 1px solid #708CAA; }
<div style="border:3px solid #708CAA">Div</div>
This div border color is #708CAA.
.myOpacity80 { color: #708CAA; opacity: 0.8; }
<p style="color:#708CAA;opacity:0.8;">80%</p>
Text with #708CAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #708CAA;}
<p style="text-shadow: 3px 3px 1px #708CAA">Text here.</p>
This text has shadow with #708CAA color.
.textShadow {text-shadow: 3px 3px 1px #708CAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #708CAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #708CAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#708CAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#708CAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #708CAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #708CAA; -webkit-box-shadow: 1px 1px 3px 2px #708CAA; box-shadow: 1px 1px 3px 2px #708CAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #708CAA; -webkit-box-shadow: 1px 1px 3px 2px #708CAA; box-shadow:1px 1px 3px 2px #708CAA;">
Div content here</div>
This text has color #708CAA on black background.
This text has color #708CAA on white background.
This text has black color on #708CAA background.
This text has white color on #708CAA background.