HEX: #49597B
RGB: (73,89,123)
#49597B contains red, green and blue colors in about the same proportion. Web safe color of #49597B is #336666 (or #366).
#49597B color RGB value is (73,89,123).
RGB: (73,89,123) (29%,35%,48%)
R 73 of 255 = 29%
G 89 of 255 = 35%
B 123 of 255 = 48%
R + G + B ~ 37%. #49597B is quite dark color.
R + G + B =
73 + 89 + 123 = 285 (100%)
R 73 of 285 ~ 25.61%
G 89 of 285 ~ 31.23%
B 123 of 285 ~ 43.16%
#49597B color CMYK value is (41,28,0,52).
CMYK: (41,28,0,52) C41M28Y0K52 (41%,28%,0%,52%) (0.41/0.28/0.00/0.52)
49 | 59 | 7B | |
---|---|---|---|
RGB | 73 | 89 | 123 |
HSL | 221° | 25.51% | 38.43% |
HSB/HSV | 221° | 40.65% | 48.24% |
CMYK | 40.65% | 27.64% | 0.00% |
51.76% |
HEX | 49 | 59 | 7B |
Decimal | 73 | 89 | 123 |
Binary | 1001001 | 1011001 | 1111011 |
Octal | 111 | 131 | 173 |
Examples of css and html codes for elements with #49597B color. Also use rgb(73,89,123) instead hex code.
.myTextColor { color: #49597B; }
<p style="color:#49597B">This sample text font color is #49597B.</p>
This text font color is #49597B.
.myBgColor { background-color: #49597B; }
<div style="background-color:#49597B">Inner text</div>
This div background color is #49597B.
.myBorderColor { border: 1px solid #49597B; }
<div style="border:3px solid #49597B">Div</div>
This div border color is #49597B.
.myOpacity80 { color: #49597B; opacity: 0.8; }
<p style="color:#49597B;opacity:0.8;">80%</p>
Text with #49597B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49597B;}
<p style="text-shadow: 3px 3px 1px #49597B">Text here.</p>
This text has shadow with #49597B color.
.textShadow {text-shadow: 3px 3px 1px #49597B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49597B, 5px 5px 20px red">Text here.</p>
This text has shadow with #49597B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49597B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49597B, Direction=45, Strength=4)">Text</p>
This text has shadow with #49597B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49597B; -webkit-box-shadow: 1px 1px 3px 2px #49597B; box-shadow: 1px 1px 3px 2px #49597B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49597B; -webkit-box-shadow: 1px 1px 3px 2px #49597B; box-shadow:1px 1px 3px 2px #49597B;">
Div content here</div>
This text has color #49597B on black background.
This text has color #49597B on white background.
This text has black color on #49597B background.
This text has white color on #49597B background.