HEX: #AEE5ED
RGB: (174,229,237)
#AEE5ED contains mainly green and blue colors. Web safe color of #AEE5ED is #99CCFF (or #9CF).
#AEE5ED color RGB value is (174,229,237).
RGB: (174,229,237) (68%,90%,93%)
R 174 of 255 = 68%
G 229 of 255 = 90%
B 237 of 255 = 93%
R + G + B ~ 84%. #AEE5ED is quite light color.
R + G + B =
174 + 229 + 237 = 640 (100%)
R 174 of 640 ~ 27.19%
G 229 of 640 ~ 35.78%
B 237 of 640 ~ 37.03%
#AEE5ED color CMYK value is (27,3,0,7).
CMYK: (27,3,0,7) C27M3Y0K7 (27%,3%,0%,7%) (0.27/0.03/0.00/0.07)
AE | E5 | ED | |
---|---|---|---|
RGB | 174 | 229 | 237 |
HSL | 188° | 63.64% | 80.59% |
HSB/HSV | 188° | 26.58% | 92.94% |
CMYK | 26.58% | 3.38% | 0.00% |
7.06% |
HEX | AE | E5 | ED |
Decimal | 174 | 229 | 237 |
Binary | 10101110 | 11100101 | 11101101 |
Octal | 256 | 345 | 355 |
Examples of css and html codes for elements with #AEE5ED color. Also use rgb(174,229,237) instead hex code.
.myTextColor { color: #AEE5ED; }
<p style="color:#AEE5ED">This sample text font color is #AEE5ED.</p>
This text font color is #AEE5ED.
.myBgColor { background-color: #AEE5ED; }
<div style="background-color:#AEE5ED">Inner text</div>
This div background color is #AEE5ED.
.myBorderColor { border: 1px solid #AEE5ED; }
<div style="border:3px solid #AEE5ED">Div</div>
This div border color is #AEE5ED.
.myOpacity80 { color: #AEE5ED; opacity: 0.8; }
<p style="color:#AEE5ED;opacity:0.8;">80%</p>
Text with #AEE5ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE5ED;}
<p style="text-shadow: 3px 3px 1px #AEE5ED">Text here.</p>
This text has shadow with #AEE5ED color.
.textShadow {text-shadow: 3px 3px 1px #AEE5ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE5ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE5ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE5ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE5ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE5ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE5ED; -webkit-box-shadow: 1px 1px 3px 2px #AEE5ED; box-shadow: 1px 1px 3px 2px #AEE5ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE5ED; -webkit-box-shadow: 1px 1px 3px 2px #AEE5ED; box-shadow:1px 1px 3px 2px #AEE5ED;">
Div content here</div>
This text has color #AEE5ED on black background.
This text has color #AEE5ED on white background.
This text has black color on #AEE5ED background.
This text has white color on #AEE5ED background.