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