HEX: #AEBB9F
RGB: (174,187,159)
#AEBB9F contains red, green and blue colors in about the same proportion. Web safe color of #AEBB9F is #99CC99 (or #9C9).
#AEBB9F color RGB value is (174,187,159).
RGB: (174,187,159) (68%,73%,62%)
R 174 of 255 = 68%
G 187 of 255 = 73%
B 159 of 255 = 62%
R + G + B ~ 68%. #AEBB9F is quite light color.
R + G + B =
174 + 187 + 159 = 520 (100%)
R 174 of 520 ~ 33.46%
G 187 of 520 ~ 35.96%
B 159 of 520 ~ 30.58%
#AEBB9F color CMYK value is (7,0,15,27).
CMYK: (7,0,15,27) C7M0Y15K27 (7%,0%,15%,27%) (0.07/0.00/0.15/0.27)
AE | BB | 9F | |
---|---|---|---|
RGB | 174 | 187 | 159 |
HSL | 88° | 17.07% | 67.84% |
HSB/HSV | 88° | 14.97% | 73.33% |
CMYK | 6.95% | 0.00% | 14.97% |
26.67% |
HEX | AE | BB | 9F |
Decimal | 174 | 187 | 159 |
Binary | 10101110 | 10111011 | 10011111 |
Octal | 256 | 273 | 237 |
Examples of css and html codes for elements with #AEBB9F color. Also use rgb(174,187,159) instead hex code.
.myTextColor { color: #AEBB9F; }
<p style="color:#AEBB9F">This sample text font color is #AEBB9F.</p>
This text font color is #AEBB9F.
.myBgColor { background-color: #AEBB9F; }
<div style="background-color:#AEBB9F">Inner text</div>
This div background color is #AEBB9F.
.myBorderColor { border: 1px solid #AEBB9F; }
<div style="border:3px solid #AEBB9F">Div</div>
This div border color is #AEBB9F.
.myOpacity80 { color: #AEBB9F; opacity: 0.8; }
<p style="color:#AEBB9F;opacity:0.8;">80%</p>
Text with #AEBB9F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEBB9F;}
<p style="text-shadow: 3px 3px 1px #AEBB9F">Text here.</p>
This text has shadow with #AEBB9F color.
.textShadow {text-shadow: 3px 3px 1px #AEBB9F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEBB9F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEBB9F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEBB9F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEBB9F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEBB9F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEBB9F; -webkit-box-shadow: 1px 1px 3px 2px #AEBB9F; box-shadow: 1px 1px 3px 2px #AEBB9F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEBB9F; -webkit-box-shadow: 1px 1px 3px 2px #AEBB9F; box-shadow:1px 1px 3px 2px #AEBB9F;">
Div content here</div>
This text has color #AEBB9F on black background.
This text has color #AEBB9F on white background.
This text has black color on #AEBB9F background.
This text has white color on #AEBB9F background.