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