HEX: #585983
RGB: (88,89,131)
#585983 contains red, green and blue colors in about the same proportion. Web safe color of #585983 is #666699 (or #669).
#585983 color RGB value is (88,89,131).
RGB: (88,89,131) (35%,35%,51%)
R 88 of 255 = 35%
G 89 of 255 = 35%
B 131 of 255 = 51%
R + G + B ~ 40%. #585983 is middle color (not dark and not light).
R + G + B =
88 + 89 + 131 = 308 (100%)
R 88 of 308 ~ 28.57%
G 89 of 308 ~ 28.9%
B 131 of 308 ~ 42.53%
#585983 color CMYK value is (33,32,0,49).
CMYK: (33,32,0,49) C33M32Y0K49 (33%,32%,0%,49%) (0.33/0.32/0.00/0.49)
58 | 59 | 83 | |
---|---|---|---|
RGB | 88 | 89 | 131 |
HSL | 239° | 19.63% | 42.94% |
HSB/HSV | 239° | 32.82% | 51.37% |
CMYK | 32.82% | 32.06% | 0.00% |
48.63% |
HEX | 58 | 59 | 83 |
Decimal | 88 | 89 | 131 |
Binary | 1011000 | 1011001 | 10000011 |
Octal | 130 | 131 | 203 |
Examples of css and html codes for elements with #585983 color. Also use rgb(88,89,131) instead hex code.
.myTextColor { color: #585983; }
<p style="color:#585983">This sample text font color is #585983.</p>
This text font color is #585983.
.myBgColor { background-color: #585983; }
<div style="background-color:#585983">Inner text</div>
This div background color is #585983.
.myBorderColor { border: 1px solid #585983; }
<div style="border:3px solid #585983">Div</div>
This div border color is #585983.
.myOpacity80 { color: #585983; opacity: 0.8; }
<p style="color:#585983;opacity:0.8;">80%</p>
Text with #585983 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #585983;}
<p style="text-shadow: 3px 3px 1px #585983">Text here.</p>
This text has shadow with #585983 color.
.textShadow {text-shadow: 3px 3px 1px #585983, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #585983, 5px 5px 20px red">Text here.</p>
This text has shadow with #585983 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#585983, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#585983, Direction=45, Strength=4)">Text</p>
This text has shadow with #585983 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #585983; -webkit-box-shadow: 1px 1px 3px 2px #585983; box-shadow: 1px 1px 3px 2px #585983; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #585983; -webkit-box-shadow: 1px 1px 3px 2px #585983; box-shadow:1px 1px 3px 2px #585983;">
Div content here</div>
This text has color #585983 on black background.
This text has color #585983 on white background.
This text has black color on #585983 background.
This text has white color on #585983 background.