HEX: #AE9DAA
RGB: (174,157,170)
#AE9DAA contains red, green and blue colors in about the same proportion. Web safe color of #AE9DAA is #999999 (or #999).
#AE9DAA color RGB value is (174,157,170).
RGB: (174,157,170) (68%,62%,67%)
R 174 of 255 = 68%
G 157 of 255 = 62%
B 170 of 255 = 67%
R + G + B ~ 66%. #AE9DAA is quite light color.
R + G + B =
174 + 157 + 170 = 501 (100%)
R 174 of 501 ~ 34.73%
G 157 of 501 ~ 31.34%
B 170 of 501 ~ 33.93%
#AE9DAA color CMYK value is (0,10,2,32).
CMYK: (0,10,2,32) C0M10Y2K32 (0%,10%,2%,32%) (0.00/0.10/0.02/0.32)
AE | 9D | AA | |
---|---|---|---|
RGB | 174 | 157 | 170 |
HSL | 314° | 9.50% | 64.90% |
HSB/HSV | 314° | 9.77% | 68.24% |
CMYK | 0.00% | 9.77% | 2.30% |
31.76% |
HEX | AE | 9D | AA |
Decimal | 174 | 157 | 170 |
Binary | 10101110 | 10011101 | 10101010 |
Octal | 256 | 235 | 252 |
Examples of css and html codes for elements with #AE9DAA color. Also use rgb(174,157,170) instead hex code.
.myTextColor { color: #AE9DAA; }
<p style="color:#AE9DAA">This sample text font color is #AE9DAA.</p>
This text font color is #AE9DAA.
.myBgColor { background-color: #AE9DAA; }
<div style="background-color:#AE9DAA">Inner text</div>
This div background color is #AE9DAA.
.myBorderColor { border: 1px solid #AE9DAA; }
<div style="border:3px solid #AE9DAA">Div</div>
This div border color is #AE9DAA.
.myOpacity80 { color: #AE9DAA; opacity: 0.8; }
<p style="color:#AE9DAA;opacity:0.8;">80%</p>
Text with #AE9DAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE9DAA;}
<p style="text-shadow: 3px 3px 1px #AE9DAA">Text here.</p>
This text has shadow with #AE9DAA color.
.textShadow {text-shadow: 3px 3px 1px #AE9DAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE9DAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE9DAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE9DAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE9DAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE9DAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE9DAA; -webkit-box-shadow: 1px 1px 3px 2px #AE9DAA; box-shadow: 1px 1px 3px 2px #AE9DAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE9DAA; -webkit-box-shadow: 1px 1px 3px 2px #AE9DAA; box-shadow:1px 1px 3px 2px #AE9DAA;">
Div content here</div>
This text has color #AE9DAA on black background.
This text has color #AE9DAA on white background.
This text has black color on #AE9DAA background.
This text has white color on #AE9DAA background.