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