HEX: #585698
RGB: (88,86,152)
#585698 contains mainly blue color. Web safe color of #585698 is #666699 (or #669).
#585698 color RGB value is (88,86,152).
RGB: (88,86,152) (35%,34%,60%)
R 88 of 255 = 35%
G 86 of 255 = 34%
B 152 of 255 = 60%
R + G + B ~ 43%. #585698 is middle color (not dark and not light).
R + G + B =
88 + 86 + 152 = 326 (100%)
R 88 of 326 ~ 26.99%
G 86 of 326 ~ 26.38%
B 152 of 326 ~ 46.63%
#585698 color CMYK value is (42,43,0,40).
CMYK: (42,43,0,40) C42M43Y0K40 (42%,43%,0%,40%) (0.42/0.43/0.00/0.40)
58 | 56 | 98 | |
---|---|---|---|
RGB | 88 | 86 | 152 |
HSL | 242° | 27.73% | 46.67% |
HSB/HSV | 242° | 43.42% | 59.61% |
CMYK | 42.11% | 43.42% | 0.00% |
40.39% |
HEX | 58 | 56 | 98 |
Decimal | 88 | 86 | 152 |
Binary | 1011000 | 1010110 | 10011000 |
Octal | 130 | 126 | 230 |
Examples of css and html codes for elements with #585698 color. Also use rgb(88,86,152) instead hex code.
.myTextColor { color: #585698; }
<p style="color:#585698">This sample text font color is #585698.</p>
This text font color is #585698.
.myBgColor { background-color: #585698; }
<div style="background-color:#585698">Inner text</div>
This div background color is #585698.
.myBorderColor { border: 1px solid #585698; }
<div style="border:3px solid #585698">Div</div>
This div border color is #585698.
.myOpacity80 { color: #585698; opacity: 0.8; }
<p style="color:#585698;opacity:0.8;">80%</p>
Text with #585698 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #585698;}
<p style="text-shadow: 3px 3px 1px #585698">Text here.</p>
This text has shadow with #585698 color.
.textShadow {text-shadow: 3px 3px 1px #585698, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #585698, 5px 5px 20px red">Text here.</p>
This text has shadow with #585698 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#585698, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#585698, Direction=45, Strength=4)">Text</p>
This text has shadow with #585698 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #585698; -webkit-box-shadow: 1px 1px 3px 2px #585698; box-shadow: 1px 1px 3px 2px #585698; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #585698; -webkit-box-shadow: 1px 1px 3px 2px #585698; box-shadow:1px 1px 3px 2px #585698;">
Div content here</div>
This text has color #585698 on black background.
This text has color #585698 on white background.
This text has black color on #585698 background.
This text has white color on #585698 background.