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