HEX: #AEC4DF
RGB: (174,196,223)
#AEC4DF contains red, green and blue colors in about the same proportion. Web safe color of #AEC4DF is #99CCCC (or #9CC).
#AEC4DF color RGB value is (174,196,223).
RGB: (174,196,223) (68%,77%,87%)
R 174 of 255 = 68%
G 196 of 255 = 77%
B 223 of 255 = 87%
R + G + B ~ 77%. #AEC4DF is quite light color.
R + G + B =
174 + 196 + 223 = 593 (100%)
R 174 of 593 ~ 29.34%
G 196 of 593 ~ 33.05%
B 223 of 593 ~ 37.61%
#AEC4DF 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 | C4 | DF | |
---|---|---|---|
RGB | 174 | 196 | 223 |
HSL | 213° | 43.36% | 77.84% |
HSB/HSV | 213° | 21.97% | 87.45% |
CMYK | 21.97% | 12.11% | 0.00% |
12.55% |
HEX | AE | C4 | DF |
Decimal | 174 | 196 | 223 |
Binary | 10101110 | 11000100 | 11011111 |
Octal | 256 | 304 | 337 |
Examples of css and html codes for elements with #AEC4DF color. Also use rgb(174,196,223) instead hex code.
.myTextColor { color: #AEC4DF; }
<p style="color:#AEC4DF">This sample text font color is #AEC4DF.</p>
This text font color is #AEC4DF.
.myBgColor { background-color: #AEC4DF; }
<div style="background-color:#AEC4DF">Inner text</div>
This div background color is #AEC4DF.
.myBorderColor { border: 1px solid #AEC4DF; }
<div style="border:3px solid #AEC4DF">Div</div>
This div border color is #AEC4DF.
.myOpacity80 { color: #AEC4DF; opacity: 0.8; }
<p style="color:#AEC4DF;opacity:0.8;">80%</p>
Text with #AEC4DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC4DF;}
<p style="text-shadow: 3px 3px 1px #AEC4DF">Text here.</p>
This text has shadow with #AEC4DF color.
.textShadow {text-shadow: 3px 3px 1px #AEC4DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC4DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC4DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC4DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC4DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC4DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC4DF; -webkit-box-shadow: 1px 1px 3px 2px #AEC4DF; box-shadow: 1px 1px 3px 2px #AEC4DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC4DF; -webkit-box-shadow: 1px 1px 3px 2px #AEC4DF; box-shadow:1px 1px 3px 2px #AEC4DF;">
Div content here</div>
This text has color #AEC4DF on black background.
This text has color #AEC4DF on white background.
This text has black color on #AEC4DF background.
This text has white color on #AEC4DF background.