HEX: #AEA59E
RGB: (174,165,158)
#AEA59E contains red, green and blue colors in about the same proportion. Web safe color of #AEA59E is #999999 (or #999).
#AEA59E color RGB value is (174,165,158).
RGB: (174,165,158) (68%,65%,62%)
R 174 of 255 = 68%
G 165 of 255 = 65%
B 158 of 255 = 62%
R + G + B ~ 65%. #AEA59E is quite light color.
R + G + B =
174 + 165 + 158 = 497 (100%)
R 174 of 497 ~ 35.01%
G 165 of 497 ~ 33.2%
B 158 of 497 ~ 31.79%
#AEA59E color CMYK value is (0,5,9,32).
CMYK: (0,5,9,32) C0M5Y9K32 (0%,5%,9%,32%) (0.00/0.05/0.09/0.32)
AE | A5 | 9E | |
---|---|---|---|
RGB | 174 | 165 | 158 |
HSL | 26° | 8.99% | 65.10% |
HSB/HSV | 26° | 9.20% | 68.24% |
CMYK | 0.00% | 5.17% | 9.20% |
31.76% |
HEX | AE | A5 | 9E |
Decimal | 174 | 165 | 158 |
Binary | 10101110 | 10100101 | 10011110 |
Octal | 256 | 245 | 236 |
Examples of css and html codes for elements with #AEA59E color. Also use rgb(174,165,158) instead hex code.
.myTextColor { color: #AEA59E; }
<p style="color:#AEA59E">This sample text font color is #AEA59E.</p>
This text font color is #AEA59E.
.myBgColor { background-color: #AEA59E; }
<div style="background-color:#AEA59E">Inner text</div>
This div background color is #AEA59E.
.myBorderColor { border: 1px solid #AEA59E; }
<div style="border:3px solid #AEA59E">Div</div>
This div border color is #AEA59E.
.myOpacity80 { color: #AEA59E; opacity: 0.8; }
<p style="color:#AEA59E;opacity:0.8;">80%</p>
Text with #AEA59E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEA59E;}
<p style="text-shadow: 3px 3px 1px #AEA59E">Text here.</p>
This text has shadow with #AEA59E color.
.textShadow {text-shadow: 3px 3px 1px #AEA59E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEA59E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEA59E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEA59E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEA59E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEA59E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEA59E; -webkit-box-shadow: 1px 1px 3px 2px #AEA59E; box-shadow: 1px 1px 3px 2px #AEA59E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEA59E; -webkit-box-shadow: 1px 1px 3px 2px #AEA59E; box-shadow:1px 1px 3px 2px #AEA59E;">
Div content here</div>
This text has color #AEA59E on black background.
This text has color #AEA59E on white background.
This text has black color on #AEA59E background.
This text has white color on #AEA59E background.