HEX: #A588CC
RGB: (165,136,204)
#A588CC contains mainly red and blue colors. Web safe color of #A588CC is #9999CC (or #99C).
#A588CC color RGB value is (165,136,204).
RGB: (165,136,204) (65%,53%,80%)
R 165 of 255 = 65%
G 136 of 255 = 53%
B 204 of 255 = 80%
R + G + B ~ 66%. #A588CC is quite light color.
R + G + B =
165 + 136 + 204 = 505 (100%)
R 165 of 505 ~ 32.67%
G 136 of 505 ~ 26.93%
B 204 of 505 ~ 40.4%
#A588CC color CMYK value is (19,33,0,20).
CMYK: (19,33,0,20) C19M33Y0K20 (19%,33%,0%,20%) (0.19/0.33/0.00/0.20)
A5 | 88 | CC | |
---|---|---|---|
RGB | 165 | 136 | 204 |
HSL | 266° | 40.00% | 66.67% |
HSB/HSV | 266° | 33.33% | 80.00% |
CMYK | 19.12% | 33.33% | 0.00% |
20.00% |
HEX | A5 | 88 | CC |
Decimal | 165 | 136 | 204 |
Binary | 10100101 | 10001000 | 11001100 |
Octal | 245 | 210 | 314 |
Examples of css and html codes for elements with #A588CC color. Also use rgb(165,136,204) instead hex code.
.myTextColor { color: #A588CC; }
<p style="color:#A588CC">This sample text font color is #A588CC.</p>
This text font color is #A588CC.
.myBgColor { background-color: #A588CC; }
<div style="background-color:#A588CC">Inner text</div>
This div background color is #A588CC.
.myBorderColor { border: 1px solid #A588CC; }
<div style="border:3px solid #A588CC">Div</div>
This div border color is #A588CC.
.myOpacity80 { color: #A588CC; opacity: 0.8; }
<p style="color:#A588CC;opacity:0.8;">80%</p>
Text with #A588CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A588CC;}
<p style="text-shadow: 3px 3px 1px #A588CC">Text here.</p>
This text has shadow with #A588CC color.
.textShadow {text-shadow: 3px 3px 1px #A588CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A588CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A588CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A588CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A588CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A588CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A588CC; -webkit-box-shadow: 1px 1px 3px 2px #A588CC; box-shadow: 1px 1px 3px 2px #A588CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A588CC; -webkit-box-shadow: 1px 1px 3px 2px #A588CC; box-shadow:1px 1px 3px 2px #A588CC;">
Div content here</div>
This text has color #A588CC on black background.
This text has color #A588CC on white background.
This text has black color on #A588CC background.
This text has white color on #A588CC background.