HEX: #585CAA
RGB: (88,92,170)
#585CAA contains mainly blue color. Web safe color of #585CAA is #666699 (or #669).
#585CAA color RGB value is (88,92,170).
RGB: (88,92,170) (35%,36%,67%)
R 88 of 255 = 35%
G 92 of 255 = 36%
B 170 of 255 = 67%
R + G + B ~ 46%. #585CAA is middle color (not dark and not light).
R + G + B =
88 + 92 + 170 = 350 (100%)
R 88 of 350 ~ 25.14%
G 92 of 350 ~ 26.29%
B 170 of 350 ~ 48.57%
#585CAA color CMYK value is (48,46,0,33).
CMYK: (48,46,0,33) C48M46Y0K33 (48%,46%,0%,33%) (0.48/0.46/0.00/0.33)
58 | 5C | AA | |
---|---|---|---|
RGB | 88 | 92 | 170 |
HSL | 237° | 32.54% | 50.59% |
HSB/HSV | 237° | 48.24% | 66.67% |
CMYK | 48.24% | 45.88% | 0.00% |
33.33% |
HEX | 58 | 5C | AA |
Decimal | 88 | 92 | 170 |
Binary | 1011000 | 1011100 | 10101010 |
Octal | 130 | 134 | 252 |
Examples of css and html codes for elements with #585CAA color. Also use rgb(88,92,170) instead hex code.
.myTextColor { color: #585CAA; }
<p style="color:#585CAA">This sample text font color is #585CAA.</p>
This text font color is #585CAA.
.myBgColor { background-color: #585CAA; }
<div style="background-color:#585CAA">Inner text</div>
This div background color is #585CAA.
.myBorderColor { border: 1px solid #585CAA; }
<div style="border:3px solid #585CAA">Div</div>
This div border color is #585CAA.
.myOpacity80 { color: #585CAA; opacity: 0.8; }
<p style="color:#585CAA;opacity:0.8;">80%</p>
Text with #585CAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #585CAA;}
<p style="text-shadow: 3px 3px 1px #585CAA">Text here.</p>
This text has shadow with #585CAA color.
.textShadow {text-shadow: 3px 3px 1px #585CAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #585CAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #585CAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#585CAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#585CAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #585CAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #585CAA; -webkit-box-shadow: 1px 1px 3px 2px #585CAA; box-shadow: 1px 1px 3px 2px #585CAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #585CAA; -webkit-box-shadow: 1px 1px 3px 2px #585CAA; box-shadow:1px 1px 3px 2px #585CAA;">
Div content here</div>
This text has color #585CAA on black background.
This text has color #585CAA on white background.
This text has black color on #585CAA background.
This text has white color on #585CAA background.