HEX: #707690
RGB: (112,118,144)
#707690 contains red, green and blue colors in about the same proportion. Web safe color of #707690 is #666699 (or #669).
#707690 color RGB value is (112,118,144).
RGB: (112,118,144) (44%,46%,56%)
R 112 of 255 = 44%
G 118 of 255 = 46%
B 144 of 255 = 56%
R + G + B ~ 49%. #707690 is middle color (not dark and not light).
R + G + B =
112 + 118 + 144 = 374 (100%)
R 112 of 374 ~ 29.95%
G 118 of 374 ~ 31.55%
B 144 of 374 ~ 38.5%
#707690 color CMYK value is (22,18,0,44).
CMYK: (22,18,0,44) C22M18Y0K44 (22%,18%,0%,44%) (0.22/0.18/0.00/0.44)
70 | 76 | 90 | |
---|---|---|---|
RGB | 112 | 118 | 144 |
HSL | 229° | 12.60% | 50.20% |
HSB/HSV | 229° | 22.22% | 56.47% |
CMYK | 22.22% | 18.06% | 0.00% |
43.53% |
HEX | 70 | 76 | 90 |
Decimal | 112 | 118 | 144 |
Binary | 1110000 | 1110110 | 10010000 |
Octal | 160 | 166 | 220 |
Examples of css and html codes for elements with #707690 color. Also use rgb(112,118,144) instead hex code.
.myTextColor { color: #707690; }
<p style="color:#707690">This sample text font color is #707690.</p>
This text font color is #707690.
.myBgColor { background-color: #707690; }
<div style="background-color:#707690">Inner text</div>
This div background color is #707690.
.myBorderColor { border: 1px solid #707690; }
<div style="border:3px solid #707690">Div</div>
This div border color is #707690.
.myOpacity80 { color: #707690; opacity: 0.8; }
<p style="color:#707690;opacity:0.8;">80%</p>
Text with #707690 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #707690;}
<p style="text-shadow: 3px 3px 1px #707690">Text here.</p>
This text has shadow with #707690 color.
.textShadow {text-shadow: 3px 3px 1px #707690, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #707690, 5px 5px 20px red">Text here.</p>
This text has shadow with #707690 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#707690, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#707690, Direction=45, Strength=4)">Text</p>
This text has shadow with #707690 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #707690; -webkit-box-shadow: 1px 1px 3px 2px #707690; box-shadow: 1px 1px 3px 2px #707690; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #707690; -webkit-box-shadow: 1px 1px 3px 2px #707690; box-shadow:1px 1px 3px 2px #707690;">
Div content here</div>
This text has color #707690 on black background.
This text has color #707690 on white background.
This text has black color on #707690 background.
This text has white color on #707690 background.