HEX: #AAE99D
RGB: (170,233,157)
#AAE99D contains mainly green color. Web safe color of #AAE99D is #99FF99 (or #9F9).
#AAE99D color RGB value is (170,233,157).
RGB: (170,233,157) (67%,91%,62%)
R 170 of 255 = 67%
G 233 of 255 = 91%
B 157 of 255 = 62%
R + G + B ~ 73%. #AAE99D is quite light color.
R + G + B =
170 + 233 + 157 = 560 (100%)
R 170 of 560 ~ 30.36%
G 233 of 560 ~ 41.61%
B 157 of 560 ~ 28.04%
#AAE99D color CMYK value is (27,0,33,9).
CMYK: (27,0,33,9) C27M0Y33K9 (27%,0%,33%,9%) (0.27/0.00/0.33/0.09)
AA | E9 | 9D | |
---|---|---|---|
RGB | 170 | 233 | 157 |
HSL | 110° | 63.33% | 76.47% |
HSB/HSV | 110° | 32.62% | 91.37% |
CMYK | 27.04% | 0.00% | 32.62% |
8.63% |
HEX | AA | E9 | 9D |
Decimal | 170 | 233 | 157 |
Binary | 10101010 | 11101001 | 10011101 |
Octal | 252 | 351 | 235 |
Examples of css and html codes for elements with #AAE99D color. Also use rgb(170,233,157) instead hex code.
.myTextColor { color: #AAE99D; }
<p style="color:#AAE99D">This sample text font color is #AAE99D.</p>
This text font color is #AAE99D.
.myBgColor { background-color: #AAE99D; }
<div style="background-color:#AAE99D">Inner text</div>
This div background color is #AAE99D.
.myBorderColor { border: 1px solid #AAE99D; }
<div style="border:3px solid #AAE99D">Div</div>
This div border color is #AAE99D.
.myOpacity80 { color: #AAE99D; opacity: 0.8; }
<p style="color:#AAE99D;opacity:0.8;">80%</p>
Text with #AAE99D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AAE99D;}
<p style="text-shadow: 3px 3px 1px #AAE99D">Text here.</p>
This text has shadow with #AAE99D color.
.textShadow {text-shadow: 3px 3px 1px #AAE99D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AAE99D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AAE99D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AAE99D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AAE99D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AAE99D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AAE99D; -webkit-box-shadow: 1px 1px 3px 2px #AAE99D; box-shadow: 1px 1px 3px 2px #AAE99D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AAE99D; -webkit-box-shadow: 1px 1px 3px 2px #AAE99D; box-shadow:1px 1px 3px 2px #AAE99D;">
Div content here</div>
This text has color #AAE99D on black background.
This text has color #AAE99D on white background.
This text has black color on #AAE99D background.
This text has white color on #AAE99D background.