HEX: #AEC3DE
RGB: (174,195,222)
#AEC3DE contains red, green and blue colors in about the same proportion. Web safe color of #AEC3DE is #99CCCC (or #9CC).
#AEC3DE color RGB value is (174,195,222).
RGB: (174,195,222) (68%,76%,87%)
R 174 of 255 = 68%
G 195 of 255 = 76%
B 222 of 255 = 87%
R + G + B ~ 77%. #AEC3DE is quite light color.
R + G + B =
174 + 195 + 222 = 591 (100%)
R 174 of 591 ~ 29.44%
G 195 of 591 ~ 32.99%
B 222 of 591 ~ 37.56%
#AEC3DE color CMYK value is (22,12,0,13).
CMYK: (22,12,0,13) C22M12Y0K13 (22%,12%,0%,13%) (0.22/0.12/0.00/0.13)
AE | C3 | DE | |
---|---|---|---|
RGB | 174 | 195 | 222 |
HSL | 214° | 42.11% | 77.65% |
HSB/HSV | 214° | 21.62% | 87.06% |
CMYK | 21.62% | 12.16% | 0.00% |
12.94% |
HEX | AE | C3 | DE |
Decimal | 174 | 195 | 222 |
Binary | 10101110 | 11000011 | 11011110 |
Octal | 256 | 303 | 336 |
Examples of css and html codes for elements with #AEC3DE color. Also use rgb(174,195,222) instead hex code.
.myTextColor { color: #AEC3DE; }
<p style="color:#AEC3DE">This sample text font color is #AEC3DE.</p>
This text font color is #AEC3DE.
.myBgColor { background-color: #AEC3DE; }
<div style="background-color:#AEC3DE">Inner text</div>
This div background color is #AEC3DE.
.myBorderColor { border: 1px solid #AEC3DE; }
<div style="border:3px solid #AEC3DE">Div</div>
This div border color is #AEC3DE.
.myOpacity80 { color: #AEC3DE; opacity: 0.8; }
<p style="color:#AEC3DE;opacity:0.8;">80%</p>
Text with #AEC3DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC3DE;}
<p style="text-shadow: 3px 3px 1px #AEC3DE">Text here.</p>
This text has shadow with #AEC3DE color.
.textShadow {text-shadow: 3px 3px 1px #AEC3DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC3DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC3DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC3DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC3DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC3DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC3DE; -webkit-box-shadow: 1px 1px 3px 2px #AEC3DE; box-shadow: 1px 1px 3px 2px #AEC3DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC3DE; -webkit-box-shadow: 1px 1px 3px 2px #AEC3DE; box-shadow:1px 1px 3px 2px #AEC3DE;">
Div content here</div>
This text has color #AEC3DE on black background.
This text has color #AEC3DE on white background.
This text has black color on #AEC3DE background.
This text has white color on #AEC3DE background.