HEX: #59488B
RGB: (89,72,139)
#59488B contains mainly red and blue colors. Web safe color of #59488B is #663399 (or #639).
#59488B color RGB value is (89,72,139).
RGB: (89,72,139) (35%,28%,55%)
R 89 of 255 = 35%
G 72 of 255 = 28%
B 139 of 255 = 55%
R + G + B ~ 39%. #59488B is quite dark color.
R + G + B =
89 + 72 + 139 = 300 (100%)
R 89 of 300 ~ 29.67%
G 72 of 300 ~ 24%
B 139 of 300 ~ 46.33%
#59488B color CMYK value is (36,48,0,45).
CMYK: (36,48,0,45) C36M48Y0K45 (36%,48%,0%,45%) (0.36/0.48/0.00/0.45)
59 | 48 | 8B | |
---|---|---|---|
RGB | 89 | 72 | 139 |
HSL | 255° | 31.75% | 41.37% |
HSB/HSV | 255° | 48.20% | 54.51% |
CMYK | 35.97% | 48.20% | 0.00% |
45.49% |
HEX | 59 | 48 | 8B |
Decimal | 89 | 72 | 139 |
Binary | 1011001 | 1001000 | 10001011 |
Octal | 131 | 110 | 213 |
Examples of css and html codes for elements with #59488B color. Also use rgb(89,72,139) instead hex code.
.myTextColor { color: #59488B; }
<p style="color:#59488B">This sample text font color is #59488B.</p>
This text font color is #59488B.
.myBgColor { background-color: #59488B; }
<div style="background-color:#59488B">Inner text</div>
This div background color is #59488B.
.myBorderColor { border: 1px solid #59488B; }
<div style="border:3px solid #59488B">Div</div>
This div border color is #59488B.
.myOpacity80 { color: #59488B; opacity: 0.8; }
<p style="color:#59488B;opacity:0.8;">80%</p>
Text with #59488B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59488B;}
<p style="text-shadow: 3px 3px 1px #59488B">Text here.</p>
This text has shadow with #59488B color.
.textShadow {text-shadow: 3px 3px 1px #59488B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59488B, 5px 5px 20px red">Text here.</p>
This text has shadow with #59488B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59488B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59488B, Direction=45, Strength=4)">Text</p>
This text has shadow with #59488B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59488B; -webkit-box-shadow: 1px 1px 3px 2px #59488B; box-shadow: 1px 1px 3px 2px #59488B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59488B; -webkit-box-shadow: 1px 1px 3px 2px #59488B; box-shadow:1px 1px 3px 2px #59488B;">
Div content here</div>
This text has color #59488B on black background.
This text has color #59488B on white background.
This text has black color on #59488B background.
This text has white color on #59488B background.