HEX: #AEC4EF
RGB: (174,196,239)
#AEC4EF contains mainly green and blue colors. Web safe color of #AEC4EF is #99CCFF (or #9CF).
#AEC4EF color RGB value is (174,196,239).
RGB: (174,196,239) (68%,77%,94%)
R 174 of 255 = 68%
G 196 of 255 = 77%
B 239 of 255 = 94%
R + G + B ~ 80%. #AEC4EF is quite light color.
R + G + B =
174 + 196 + 239 = 609 (100%)
R 174 of 609 ~ 28.57%
G 196 of 609 ~ 32.18%
B 239 of 609 ~ 39.24%
#AEC4EF color CMYK value is (27,18,0,6).
CMYK: (27,18,0,6) C27M18Y0K6 (27%,18%,0%,6%) (0.27/0.18/0.00/0.06)
AE | C4 | EF | |
---|---|---|---|
RGB | 174 | 196 | 239 |
HSL | 220° | 67.01% | 80.98% |
HSB/HSV | 220° | 27.20% | 93.73% |
CMYK | 27.20% | 17.99% | 0.00% |
6.27% |
HEX | AE | C4 | EF |
Decimal | 174 | 196 | 239 |
Binary | 10101110 | 11000100 | 11101111 |
Octal | 256 | 304 | 357 |
Examples of css and html codes for elements with #AEC4EF color. Also use rgb(174,196,239) instead hex code.
.myTextColor { color: #AEC4EF; }
<p style="color:#AEC4EF">This sample text font color is #AEC4EF.</p>
This text font color is #AEC4EF.
.myBgColor { background-color: #AEC4EF; }
<div style="background-color:#AEC4EF">Inner text</div>
This div background color is #AEC4EF.
.myBorderColor { border: 1px solid #AEC4EF; }
<div style="border:3px solid #AEC4EF">Div</div>
This div border color is #AEC4EF.
.myOpacity80 { color: #AEC4EF; opacity: 0.8; }
<p style="color:#AEC4EF;opacity:0.8;">80%</p>
Text with #AEC4EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC4EF;}
<p style="text-shadow: 3px 3px 1px #AEC4EF">Text here.</p>
This text has shadow with #AEC4EF color.
.textShadow {text-shadow: 3px 3px 1px #AEC4EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC4EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC4EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC4EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC4EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC4EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC4EF; -webkit-box-shadow: 1px 1px 3px 2px #AEC4EF; box-shadow: 1px 1px 3px 2px #AEC4EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC4EF; -webkit-box-shadow: 1px 1px 3px 2px #AEC4EF; box-shadow:1px 1px 3px 2px #AEC4EF;">
Div content here</div>
This text has color #AEC4EF on black background.
This text has color #AEC4EF on white background.
This text has black color on #AEC4EF background.
This text has white color on #AEC4EF background.