HEX: #AEE8BE
RGB: (174,232,190)
#AEE8BE contains red, green and blue colors in about the same proportion. Web safe color of #AEE8BE is #99FFCC (or #9FC).
#AEE8BE color RGB value is (174,232,190).
RGB: (174,232,190) (68%,91%,75%)
R 174 of 255 = 68%
G 232 of 255 = 91%
B 190 of 255 = 75%
R + G + B ~ 78%. #AEE8BE is quite light color.
R + G + B =
174 + 232 + 190 = 596 (100%)
R 174 of 596 ~ 29.19%
G 232 of 596 ~ 38.93%
B 190 of 596 ~ 31.88%
#AEE8BE color CMYK value is (25,0,18,9).
CMYK: (25,0,18,9) C25M0Y18K9 (25%,0%,18%,9%) (0.25/0.00/0.18/0.09)
AE | E8 | BE | |
---|---|---|---|
RGB | 174 | 232 | 190 |
HSL | 137° | 55.77% | 79.61% |
HSB/HSV | 137° | 25.00% | 90.98% |
CMYK | 25.00% | 0.00% | 18.10% |
9.02% |
HEX | AE | E8 | BE |
Decimal | 174 | 232 | 190 |
Binary | 10101110 | 11101000 | 10111110 |
Octal | 256 | 350 | 276 |
Examples of css and html codes for elements with #AEE8BE color. Also use rgb(174,232,190) instead hex code.
.myTextColor { color: #AEE8BE; }
<p style="color:#AEE8BE">This sample text font color is #AEE8BE.</p>
This text font color is #AEE8BE.
.myBgColor { background-color: #AEE8BE; }
<div style="background-color:#AEE8BE">Inner text</div>
This div background color is #AEE8BE.
.myBorderColor { border: 1px solid #AEE8BE; }
<div style="border:3px solid #AEE8BE">Div</div>
This div border color is #AEE8BE.
.myOpacity80 { color: #AEE8BE; opacity: 0.8; }
<p style="color:#AEE8BE;opacity:0.8;">80%</p>
Text with #AEE8BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE8BE;}
<p style="text-shadow: 3px 3px 1px #AEE8BE">Text here.</p>
This text has shadow with #AEE8BE color.
.textShadow {text-shadow: 3px 3px 1px #AEE8BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE8BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE8BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE8BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE8BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE8BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE8BE; -webkit-box-shadow: 1px 1px 3px 2px #AEE8BE; box-shadow: 1px 1px 3px 2px #AEE8BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE8BE; -webkit-box-shadow: 1px 1px 3px 2px #AEE8BE; box-shadow:1px 1px 3px 2px #AEE8BE;">
Div content here</div>
This text has color #AEE8BE on black background.
This text has color #AEE8BE on white background.
This text has black color on #AEE8BE background.
This text has white color on #AEE8BE background.