HEX: #497771
RGB: (73,119,113)
#497771 contains red, green and blue colors in about the same proportion. Web safe color of #497771 is #336666 (or #366).
#497771 color RGB value is (73,119,113).
RGB: (73,119,113) (29%,47%,44%)
R 73 of 255 = 29%
G 119 of 255 = 47%
B 113 of 255 = 44%
R + G + B ~ 40%. #497771 is middle color (not dark and not light).
R + G + B =
73 + 119 + 113 = 305 (100%)
R 73 of 305 ~ 23.93%
G 119 of 305 ~ 39.02%
B 113 of 305 ~ 37.05%
#497771 color CMYK value is (39,0,5,53).
CMYK: (39,0,5,53) C39M0Y5K53 (39%,0%,5%,53%) (0.39/0.00/0.05/0.53)
49 | 77 | 71 | |
---|---|---|---|
RGB | 73 | 119 | 113 |
HSL | 172° | 23.96% | 37.65% |
HSB/HSV | 172° | 38.66% | 46.67% |
CMYK | 38.66% | 0.00% | 5.04% |
53.33% |
HEX | 49 | 77 | 71 |
Decimal | 73 | 119 | 113 |
Binary | 1001001 | 1110111 | 1110001 |
Octal | 111 | 167 | 161 |
Examples of css and html codes for elements with #497771 color. Also use rgb(73,119,113) instead hex code.
.myTextColor { color: #497771; }
<p style="color:#497771">This sample text font color is #497771.</p>
This text font color is #497771.
.myBgColor { background-color: #497771; }
<div style="background-color:#497771">Inner text</div>
This div background color is #497771.
.myBorderColor { border: 1px solid #497771; }
<div style="border:3px solid #497771">Div</div>
This div border color is #497771.
.myOpacity80 { color: #497771; opacity: 0.8; }
<p style="color:#497771;opacity:0.8;">80%</p>
Text with #497771 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #497771;}
<p style="text-shadow: 3px 3px 1px #497771">Text here.</p>
This text has shadow with #497771 color.
.textShadow {text-shadow: 3px 3px 1px #497771, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #497771, 5px 5px 20px red">Text here.</p>
This text has shadow with #497771 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#497771, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#497771, Direction=45, Strength=4)">Text</p>
This text has shadow with #497771 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #497771; -webkit-box-shadow: 1px 1px 3px 2px #497771; box-shadow: 1px 1px 3px 2px #497771; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #497771; -webkit-box-shadow: 1px 1px 3px 2px #497771; box-shadow:1px 1px 3px 2px #497771;">
Div content here</div>
This text has color #497771 on black background.
This text has color #497771 on white background.
This text has black color on #497771 background.
This text has white color on #497771 background.