HEX: #595990
RGB: (89,89,144)
#595990 contains red, green and blue colors in about the same proportion. Web safe color of #595990 is #666699 (or #669).
#595990 color RGB value is (89,89,144).
RGB: (89,89,144) (35%,35%,56%)
R 89 of 255 = 35%
G 89 of 255 = 35%
B 144 of 255 = 56%
R + G + B ~ 42%. #595990 is middle color (not dark and not light).
R + G + B =
89 + 89 + 144 = 322 (100%)
R 89 of 322 ~ 27.64%
G 89 of 322 ~ 27.64%
B 144 of 322 ~ 44.72%
#595990 color CMYK value is (38,38,0,44).
CMYK: (38,38,0,44) C38M38Y0K44 (38%,38%,0%,44%) (0.38/0.38/0.00/0.44)
59 | 59 | 90 | |
---|---|---|---|
RGB | 89 | 89 | 144 |
HSL | 240° | 23.61% | 45.69% |
HSB/HSV | 240° | 38.19% | 56.47% |
CMYK | 38.19% | 38.19% | 0.00% |
43.53% |
HEX | 59 | 59 | 90 |
Decimal | 89 | 89 | 144 |
Binary | 1011001 | 1011001 | 10010000 |
Octal | 131 | 131 | 220 |
Examples of css and html codes for elements with #595990 color. Also use rgb(89,89,144) instead hex code.
.myTextColor { color: #595990; }
<p style="color:#595990">This sample text font color is #595990.</p>
This text font color is #595990.
.myBgColor { background-color: #595990; }
<div style="background-color:#595990">Inner text</div>
This div background color is #595990.
.myBorderColor { border: 1px solid #595990; }
<div style="border:3px solid #595990">Div</div>
This div border color is #595990.
.myOpacity80 { color: #595990; opacity: 0.8; }
<p style="color:#595990;opacity:0.8;">80%</p>
Text with #595990 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #595990;}
<p style="text-shadow: 3px 3px 1px #595990">Text here.</p>
This text has shadow with #595990 color.
.textShadow {text-shadow: 3px 3px 1px #595990, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #595990, 5px 5px 20px red">Text here.</p>
This text has shadow with #595990 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#595990, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#595990, Direction=45, Strength=4)">Text</p>
This text has shadow with #595990 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #595990; -webkit-box-shadow: 1px 1px 3px 2px #595990; box-shadow: 1px 1px 3px 2px #595990; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #595990; -webkit-box-shadow: 1px 1px 3px 2px #595990; box-shadow:1px 1px 3px 2px #595990;">
Div content here</div>
This text has color #595990 on black background.
This text has color #595990 on white background.
This text has black color on #595990 background.
This text has white color on #595990 background.