HEX: #A5588E
RGB: (165,88,142)
#A5588E contains mainly red and blue colors. Web safe color of #A5588E is #996699 (or #969).
#A5588E color RGB value is (165,88,142).
RGB: (165,88,142) (65%,35%,56%)
R 165 of 255 = 65%
G 88 of 255 = 35%
B 142 of 255 = 56%
R + G + B ~ 52%. #A5588E is middle color (not dark and not light).
R + G + B =
165 + 88 + 142 = 395 (100%)
R 165 of 395 ~ 41.77%
G 88 of 395 ~ 22.28%
B 142 of 395 ~ 35.95%
#A5588E color CMYK value is (0,47,14,35).
CMYK: (0,47,14,35) C0M47Y14K35 (0%,47%,14%,35%) (0.00/0.47/0.14/0.35)
A5 | 58 | 8E | |
---|---|---|---|
RGB | 165 | 88 | 142 |
HSL | 318° | 30.43% | 49.61% |
HSB/HSV | 318° | 46.67% | 64.71% |
CMYK | 0.00% | 46.67% | 13.94% |
35.29% |
HEX | A5 | 58 | 8E |
Decimal | 165 | 88 | 142 |
Binary | 10100101 | 1011000 | 10001110 |
Octal | 245 | 130 | 216 |
Examples of css and html codes for elements with #A5588E color. Also use rgb(165,88,142) instead hex code.
.myTextColor { color: #A5588E; }
<p style="color:#A5588E">This sample text font color is #A5588E.</p>
This text font color is #A5588E.
.myBgColor { background-color: #A5588E; }
<div style="background-color:#A5588E">Inner text</div>
This div background color is #A5588E.
.myBorderColor { border: 1px solid #A5588E; }
<div style="border:3px solid #A5588E">Div</div>
This div border color is #A5588E.
.myOpacity80 { color: #A5588E; opacity: 0.8; }
<p style="color:#A5588E;opacity:0.8;">80%</p>
Text with #A5588E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5588E;}
<p style="text-shadow: 3px 3px 1px #A5588E">Text here.</p>
This text has shadow with #A5588E color.
.textShadow {text-shadow: 3px 3px 1px #A5588E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5588E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5588E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5588E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5588E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5588E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5588E; -webkit-box-shadow: 1px 1px 3px 2px #A5588E; box-shadow: 1px 1px 3px 2px #A5588E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5588E; -webkit-box-shadow: 1px 1px 3px 2px #A5588E; box-shadow:1px 1px 3px 2px #A5588E;">
Div content here</div>
This text has color #A5588E on black background.
This text has color #A5588E on white background.
This text has black color on #A5588E background.
This text has white color on #A5588E background.