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