HEX: #AEEBB9
RGB: (174,235,185)
#AEEBB9 contains mainly green and blue colors. Web safe color of #AEEBB9 is #99FFCC (or #9FC).
#AEEBB9 color RGB value is (174,235,185).
RGB: (174,235,185) (68%,92%,73%)
R 174 of 255 = 68%
G 235 of 255 = 92%
B 185 of 255 = 73%
R + G + B ~ 78%. #AEEBB9 is quite light color.
R + G + B =
174 + 235 + 185 = 594 (100%)
R 174 of 594 ~ 29.29%
G 235 of 594 ~ 39.56%
B 185 of 594 ~ 31.14%
#AEEBB9 color CMYK value is (26,0,21,8).
CMYK: (26,0,21,8) C26M0Y21K8 (26%,0%,21%,8%) (0.26/0.00/0.21/0.08)
AE | EB | B9 | |
---|---|---|---|
RGB | 174 | 235 | 185 |
HSL | 131° | 60.40% | 80.20% |
HSB/HSV | 131° | 25.96% | 92.16% |
CMYK | 25.96% | 0.00% | 21.28% |
7.84% |
HEX | AE | EB | B9 |
Decimal | 174 | 235 | 185 |
Binary | 10101110 | 11101011 | 10111001 |
Octal | 256 | 353 | 271 |
Examples of css and html codes for elements with #AEEBB9 color. Also use rgb(174,235,185) instead hex code.
.myTextColor { color: #AEEBB9; }
<p style="color:#AEEBB9">This sample text font color is #AEEBB9.</p>
This text font color is #AEEBB9.
.myBgColor { background-color: #AEEBB9; }
<div style="background-color:#AEEBB9">Inner text</div>
This div background color is #AEEBB9.
.myBorderColor { border: 1px solid #AEEBB9; }
<div style="border:3px solid #AEEBB9">Div</div>
This div border color is #AEEBB9.
.myOpacity80 { color: #AEEBB9; opacity: 0.8; }
<p style="color:#AEEBB9;opacity:0.8;">80%</p>
Text with #AEEBB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEEBB9;}
<p style="text-shadow: 3px 3px 1px #AEEBB9">Text here.</p>
This text has shadow with #AEEBB9 color.
.textShadow {text-shadow: 3px 3px 1px #AEEBB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEEBB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEEBB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEEBB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEEBB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEEBB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEEBB9; -webkit-box-shadow: 1px 1px 3px 2px #AEEBB9; box-shadow: 1px 1px 3px 2px #AEEBB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEEBB9; -webkit-box-shadow: 1px 1px 3px 2px #AEEBB9; box-shadow:1px 1px 3px 2px #AEEBB9;">
Div content here</div>
This text has color #AEEBB9 on black background.
This text has color #AEEBB9 on white background.
This text has black color on #AEEBB9 background.
This text has white color on #AEEBB9 background.