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