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