HEX: #AEE6DC
RGB: (174,230,220)
#AEE6DC contains red, green and blue colors in about the same proportion. Web safe color of #AEE6DC is #99CCCC (or #9CC).
#AEE6DC color RGB value is (174,230,220).
RGB: (174,230,220) (68%,90%,86%)
R 174 of 255 = 68%
G 230 of 255 = 90%
B 220 of 255 = 86%
R + G + B ~ 81%. #AEE6DC is quite light color.
R + G + B =
174 + 230 + 220 = 624 (100%)
R 174 of 624 ~ 27.88%
G 230 of 624 ~ 36.86%
B 220 of 624 ~ 35.26%
#AEE6DC color CMYK value is (24,0,4,10).
CMYK: (24,0,4,10) C24M0Y4K10 (24%,0%,4%,10%) (0.24/0.00/0.04/0.10)
AE | E6 | DC | |
---|---|---|---|
RGB | 174 | 230 | 220 |
HSL | 169° | 52.83% | 79.22% |
HSB/HSV | 169° | 24.35% | 90.20% |
CMYK | 24.35% | 0.00% | 4.35% |
9.80% |
HEX | AE | E6 | DC |
Decimal | 174 | 230 | 220 |
Binary | 10101110 | 11100110 | 11011100 |
Octal | 256 | 346 | 334 |
Examples of css and html codes for elements with #AEE6DC color. Also use rgb(174,230,220) instead hex code.
.myTextColor { color: #AEE6DC; }
<p style="color:#AEE6DC">This sample text font color is #AEE6DC.</p>
This text font color is #AEE6DC.
.myBgColor { background-color: #AEE6DC; }
<div style="background-color:#AEE6DC">Inner text</div>
This div background color is #AEE6DC.
.myBorderColor { border: 1px solid #AEE6DC; }
<div style="border:3px solid #AEE6DC">Div</div>
This div border color is #AEE6DC.
.myOpacity80 { color: #AEE6DC; opacity: 0.8; }
<p style="color:#AEE6DC;opacity:0.8;">80%</p>
Text with #AEE6DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE6DC;}
<p style="text-shadow: 3px 3px 1px #AEE6DC">Text here.</p>
This text has shadow with #AEE6DC color.
.textShadow {text-shadow: 3px 3px 1px #AEE6DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE6DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE6DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE6DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE6DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE6DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE6DC; -webkit-box-shadow: 1px 1px 3px 2px #AEE6DC; box-shadow: 1px 1px 3px 2px #AEE6DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE6DC; -webkit-box-shadow: 1px 1px 3px 2px #AEE6DC; box-shadow:1px 1px 3px 2px #AEE6DC;">
Div content here</div>
This text has color #AEE6DC on black background.
This text has color #AEE6DC on white background.
This text has black color on #AEE6DC background.
This text has white color on #AEE6DC background.