HEX: #AAE7AB
RGB: (170,231,171)
#AAE7AB contains mainly green color. Web safe color of #AAE7AB is #99FF99 (or #9F9).
#AAE7AB color RGB value is (170,231,171).
RGB: (170,231,171) (67%,91%,67%)
R 170 of 255 = 67%
G 231 of 255 = 91%
B 171 of 255 = 67%
R + G + B ~ 75%. #AAE7AB is quite light color.
R + G + B =
170 + 231 + 171 = 572 (100%)
R 170 of 572 ~ 29.72%
G 231 of 572 ~ 40.38%
B 171 of 572 ~ 29.9%
#AAE7AB color CMYK value is (26,0,26,9).
CMYK: (26,0,26,9) C26M0Y26K9 (26%,0%,26%,9%) (0.26/0.00/0.26/0.09)
AA | E7 | AB | |
---|---|---|---|
RGB | 170 | 231 | 171 |
HSL | 121° | 55.96% | 78.63% |
HSB/HSV | 121° | 26.41% | 90.59% |
CMYK | 26.41% | 0.00% | 25.97% |
9.41% |
HEX | AA | E7 | AB |
Decimal | 170 | 231 | 171 |
Binary | 10101010 | 11100111 | 10101011 |
Octal | 252 | 347 | 253 |
Examples of css and html codes for elements with #AAE7AB color. Also use rgb(170,231,171) instead hex code.
.myTextColor { color: #AAE7AB; }
<p style="color:#AAE7AB">This sample text font color is #AAE7AB.</p>
This text font color is #AAE7AB.
.myBgColor { background-color: #AAE7AB; }
<div style="background-color:#AAE7AB">Inner text</div>
This div background color is #AAE7AB.
.myBorderColor { border: 1px solid #AAE7AB; }
<div style="border:3px solid #AAE7AB">Div</div>
This div border color is #AAE7AB.
.myOpacity80 { color: #AAE7AB; opacity: 0.8; }
<p style="color:#AAE7AB;opacity:0.8;">80%</p>
Text with #AAE7AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AAE7AB;}
<p style="text-shadow: 3px 3px 1px #AAE7AB">Text here.</p>
This text has shadow with #AAE7AB color.
.textShadow {text-shadow: 3px 3px 1px #AAE7AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AAE7AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AAE7AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AAE7AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AAE7AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AAE7AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AAE7AB; -webkit-box-shadow: 1px 1px 3px 2px #AAE7AB; box-shadow: 1px 1px 3px 2px #AAE7AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AAE7AB; -webkit-box-shadow: 1px 1px 3px 2px #AAE7AB; box-shadow:1px 1px 3px 2px #AAE7AB;">
Div content here</div>
This text has color #AAE7AB on black background.
This text has color #AAE7AB on white background.
This text has black color on #AAE7AB background.
This text has white color on #AAE7AB background.