HEX: #A588AB
RGB: (165,136,171)
#A588AB contains red, green and blue colors in about the same proportion. Web safe color of #A588AB is #999999 (or #999).
#A588AB color RGB value is (165,136,171).
RGB: (165,136,171) (65%,53%,67%)
R 165 of 255 = 65%
G 136 of 255 = 53%
B 171 of 255 = 67%
R + G + B ~ 62%. #A588AB is quite light color.
R + G + B =
165 + 136 + 171 = 472 (100%)
R 165 of 472 ~ 34.96%
G 136 of 472 ~ 28.81%
B 171 of 472 ~ 36.23%
#A588AB color CMYK value is (4,20,0,33).
CMYK: (4,20,0,33) C4M20Y0K33 (4%,20%,0%,33%) (0.04/0.20/0.00/0.33)
A5 | 88 | AB | |
---|---|---|---|
RGB | 165 | 136 | 171 |
HSL | 290° | 17.24% | 60.20% |
HSB/HSV | 290° | 20.47% | 67.06% |
CMYK | 3.51% | 20.47% | 0.00% |
32.94% |
HEX | A5 | 88 | AB |
Decimal | 165 | 136 | 171 |
Binary | 10100101 | 10001000 | 10101011 |
Octal | 245 | 210 | 253 |
Examples of css and html codes for elements with #A588AB color. Also use rgb(165,136,171) instead hex code.
.myTextColor { color: #A588AB; }
<p style="color:#A588AB">This sample text font color is #A588AB.</p>
This text font color is #A588AB.
.myBgColor { background-color: #A588AB; }
<div style="background-color:#A588AB">Inner text</div>
This div background color is #A588AB.
.myBorderColor { border: 1px solid #A588AB; }
<div style="border:3px solid #A588AB">Div</div>
This div border color is #A588AB.
.myOpacity80 { color: #A588AB; opacity: 0.8; }
<p style="color:#A588AB;opacity:0.8;">80%</p>
Text with #A588AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A588AB;}
<p style="text-shadow: 3px 3px 1px #A588AB">Text here.</p>
This text has shadow with #A588AB color.
.textShadow {text-shadow: 3px 3px 1px #A588AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A588AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A588AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A588AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A588AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A588AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A588AB; -webkit-box-shadow: 1px 1px 3px 2px #A588AB; box-shadow: 1px 1px 3px 2px #A588AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A588AB; -webkit-box-shadow: 1px 1px 3px 2px #A588AB; box-shadow:1px 1px 3px 2px #A588AB;">
Div content here</div>
This text has color #A588AB on black background.
This text has color #A588AB on white background.
This text has black color on #A588AB background.
This text has white color on #A588AB background.