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