HEX: #709989
RGB: (112,153,137)
#709989 contains red, green and blue colors in about the same proportion. Web safe color of #709989 is #669999 (or #699).
#709989 color RGB value is (112,153,137).
RGB: (112,153,137) (44%,60%,54%)
R 112 of 255 = 44%
G 153 of 255 = 60%
B 137 of 255 = 54%
R + G + B ~ 53%. #709989 is middle color (not dark and not light).
R + G + B =
112 + 153 + 137 = 402 (100%)
R 112 of 402 ~ 27.86%
G 153 of 402 ~ 38.06%
B 137 of 402 ~ 34.08%
#709989 color CMYK value is (27,0,10,40).
CMYK: (27,0,10,40) C27M0Y10K40 (27%,0%,10%,40%) (0.27/0.00/0.10/0.40)
70 | 99 | 89 | |
---|---|---|---|
RGB | 112 | 153 | 137 |
HSL | 157° | 16.73% | 51.96% |
HSB/HSV | 157° | 26.80% | 60.00% |
CMYK | 26.80% | 0.00% | 10.46% |
40.00% |
HEX | 70 | 99 | 89 |
Decimal | 112 | 153 | 137 |
Binary | 1110000 | 10011001 | 10001001 |
Octal | 160 | 231 | 211 |
Examples of css and html codes for elements with #709989 color. Also use rgb(112,153,137) instead hex code.
.myTextColor { color: #709989; }
<p style="color:#709989">This sample text font color is #709989.</p>
This text font color is #709989.
.myBgColor { background-color: #709989; }
<div style="background-color:#709989">Inner text</div>
This div background color is #709989.
.myBorderColor { border: 1px solid #709989; }
<div style="border:3px solid #709989">Div</div>
This div border color is #709989.
.myOpacity80 { color: #709989; opacity: 0.8; }
<p style="color:#709989;opacity:0.8;">80%</p>
Text with #709989 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #709989;}
<p style="text-shadow: 3px 3px 1px #709989">Text here.</p>
This text has shadow with #709989 color.
.textShadow {text-shadow: 3px 3px 1px #709989, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #709989, 5px 5px 20px red">Text here.</p>
This text has shadow with #709989 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#709989, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#709989, Direction=45, Strength=4)">Text</p>
This text has shadow with #709989 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #709989; -webkit-box-shadow: 1px 1px 3px 2px #709989; box-shadow: 1px 1px 3px 2px #709989; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #709989; -webkit-box-shadow: 1px 1px 3px 2px #709989; box-shadow:1px 1px 3px 2px #709989;">
Div content here</div>
This text has color #709989 on black background.
This text has color #709989 on white background.
This text has black color on #709989 background.
This text has white color on #709989 background.