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