HEX: #596DAD
RGB: (89,109,173)
#596DAD contains mainly blue color. Web safe color of #596DAD is #666699 (or #669).
#596DAD color RGB value is (89,109,173).
RGB: (89,109,173) (35%,43%,68%)
R 89 of 255 = 35%
G 109 of 255 = 43%
B 173 of 255 = 68%
R + G + B ~ 49%. #596DAD is middle color (not dark and not light).
R + G + B =
89 + 109 + 173 = 371 (100%)
R 89 of 371 ~ 23.99%
G 109 of 371 ~ 29.38%
B 173 of 371 ~ 46.63%
#596DAD color CMYK value is (49,37,0,32).
CMYK: (49,37,0,32) C49M37Y0K32 (49%,37%,0%,32%) (0.49/0.37/0.00/0.32)
59 | 6D | AD | |
---|---|---|---|
RGB | 89 | 109 | 173 |
HSL | 226° | 33.87% | 51.37% |
HSB/HSV | 226° | 48.55% | 67.84% |
CMYK | 48.55% | 36.99% | 0.00% |
32.16% |
HEX | 59 | 6D | AD |
Decimal | 89 | 109 | 173 |
Binary | 1011001 | 1101101 | 10101101 |
Octal | 131 | 155 | 255 |
Examples of css and html codes for elements with #596DAD color. Also use rgb(89,109,173) instead hex code.
.myTextColor { color: #596DAD; }
<p style="color:#596DAD">This sample text font color is #596DAD.</p>
This text font color is #596DAD.
.myBgColor { background-color: #596DAD; }
<div style="background-color:#596DAD">Inner text</div>
This div background color is #596DAD.
.myBorderColor { border: 1px solid #596DAD; }
<div style="border:3px solid #596DAD">Div</div>
This div border color is #596DAD.
.myOpacity80 { color: #596DAD; opacity: 0.8; }
<p style="color:#596DAD;opacity:0.8;">80%</p>
Text with #596DAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #596DAD;}
<p style="text-shadow: 3px 3px 1px #596DAD">Text here.</p>
This text has shadow with #596DAD color.
.textShadow {text-shadow: 3px 3px 1px #596DAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #596DAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #596DAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#596DAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#596DAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #596DAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #596DAD; -webkit-box-shadow: 1px 1px 3px 2px #596DAD; box-shadow: 1px 1px 3px 2px #596DAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #596DAD; -webkit-box-shadow: 1px 1px 3px 2px #596DAD; box-shadow:1px 1px 3px 2px #596DAD;">
Div content here</div>
This text has color #596DAD on black background.
This text has color #596DAD on white background.
This text has black color on #596DAD background.
This text has white color on #596DAD background.