HEX: #637699
RGB: (99,118,153)
#637699 contains red, green and blue colors in about the same proportion. Web safe color of #637699 is #666699 (or #669).
#637699 color RGB value is (99,118,153).
RGB: (99,118,153) (39%,46%,60%)
R 99 of 255 = 39%
G 118 of 255 = 46%
B 153 of 255 = 60%
R + G + B ~ 48%. #637699 is middle color (not dark and not light).
R + G + B =
99 + 118 + 153 = 370 (100%)
R 99 of 370 ~ 26.76%
G 118 of 370 ~ 31.89%
B 153 of 370 ~ 41.35%
#637699 color CMYK value is (35,23,0,40).
CMYK: (35,23,0,40) C35M23Y0K40 (35%,23%,0%,40%) (0.35/0.23/0.00/0.40)
63 | 76 | 99 | |
---|---|---|---|
RGB | 99 | 118 | 153 |
HSL | 219° | 21.43% | 49.41% |
HSB/HSV | 219° | 35.29% | 60.00% |
CMYK | 35.29% | 22.88% | 0.00% |
40.00% |
HEX | 63 | 76 | 99 |
Decimal | 99 | 118 | 153 |
Binary | 1100011 | 1110110 | 10011001 |
Octal | 143 | 166 | 231 |
Examples of css and html codes for elements with #637699 color. Also use rgb(99,118,153) instead hex code.
.myTextColor { color: #637699; }
<p style="color:#637699">This sample text font color is #637699.</p>
This text font color is #637699.
.myBgColor { background-color: #637699; }
<div style="background-color:#637699">Inner text</div>
This div background color is #637699.
.myBorderColor { border: 1px solid #637699; }
<div style="border:3px solid #637699">Div</div>
This div border color is #637699.
.myOpacity80 { color: #637699; opacity: 0.8; }
<p style="color:#637699;opacity:0.8;">80%</p>
Text with #637699 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #637699;}
<p style="text-shadow: 3px 3px 1px #637699">Text here.</p>
This text has shadow with #637699 color.
.textShadow {text-shadow: 3px 3px 1px #637699, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #637699, 5px 5px 20px red">Text here.</p>
This text has shadow with #637699 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#637699, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#637699, Direction=45, Strength=4)">Text</p>
This text has shadow with #637699 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #637699; -webkit-box-shadow: 1px 1px 3px 2px #637699; box-shadow: 1px 1px 3px 2px #637699; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #637699; -webkit-box-shadow: 1px 1px 3px 2px #637699; box-shadow:1px 1px 3px 2px #637699;">
Div content here</div>
This text has color #637699 on black background.
This text has color #637699 on white background.
This text has black color on #637699 background.
This text has white color on #637699 background.