HEX: #AEB9AD
RGB: (174,185,173)
#AEB9AD contains red, green and blue colors in about the same proportion. Web safe color of #AEB9AD is #99CC99 (or #9C9).
#AEB9AD color RGB value is (174,185,173).
RGB: (174,185,173) (68%,73%,68%)
R 174 of 255 = 68%
G 185 of 255 = 73%
B 173 of 255 = 68%
R + G + B ~ 70%. #AEB9AD is quite light color.
R + G + B =
174 + 185 + 173 = 532 (100%)
R 174 of 532 ~ 32.71%
G 185 of 532 ~ 34.77%
B 173 of 532 ~ 32.52%
#AEB9AD color CMYK value is (6,0,6,27).
CMYK: (6,0,6,27) C6M0Y6K27 (6%,0%,6%,27%) (0.06/0.00/0.06/0.27)
AE | B9 | AD | |
---|---|---|---|
RGB | 174 | 185 | 173 |
HSL | 115° | 7.89% | 70.20% |
HSB/HSV | 115° | 6.49% | 72.55% |
CMYK | 5.95% | 0.00% | 6.49% |
27.45% |
HEX | AE | B9 | AD |
Decimal | 174 | 185 | 173 |
Binary | 10101110 | 10111001 | 10101101 |
Octal | 256 | 271 | 255 |
Examples of css and html codes for elements with #AEB9AD color. Also use rgb(174,185,173) instead hex code.
.myTextColor { color: #AEB9AD; }
<p style="color:#AEB9AD">This sample text font color is #AEB9AD.</p>
This text font color is #AEB9AD.
.myBgColor { background-color: #AEB9AD; }
<div style="background-color:#AEB9AD">Inner text</div>
This div background color is #AEB9AD.
.myBorderColor { border: 1px solid #AEB9AD; }
<div style="border:3px solid #AEB9AD">Div</div>
This div border color is #AEB9AD.
.myOpacity80 { color: #AEB9AD; opacity: 0.8; }
<p style="color:#AEB9AD;opacity:0.8;">80%</p>
Text with #AEB9AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB9AD;}
<p style="text-shadow: 3px 3px 1px #AEB9AD">Text here.</p>
This text has shadow with #AEB9AD color.
.textShadow {text-shadow: 3px 3px 1px #AEB9AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB9AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB9AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB9AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB9AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB9AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB9AD; -webkit-box-shadow: 1px 1px 3px 2px #AEB9AD; box-shadow: 1px 1px 3px 2px #AEB9AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB9AD; -webkit-box-shadow: 1px 1px 3px 2px #AEB9AD; box-shadow:1px 1px 3px 2px #AEB9AD;">
Div content here</div>
This text has color #AEB9AD on black background.
This text has color #AEB9AD on white background.
This text has black color on #AEB9AD background.
This text has white color on #AEB9AD background.