HEX: #AEDFE3
RGB: (174,223,227)
#AEDFE3 contains red, green and blue colors in about the same proportion. Web safe color of #AEDFE3 is #99CCCC (or #9CC).
#AEDFE3 color RGB value is (174,223,227).
RGB: (174,223,227) (68%,87%,89%)
R 174 of 255 = 68%
G 223 of 255 = 87%
B 227 of 255 = 89%
R + G + B ~ 81%. #AEDFE3 is quite light color.
R + G + B =
174 + 223 + 227 = 624 (100%)
R 174 of 624 ~ 27.88%
G 223 of 624 ~ 35.74%
B 227 of 624 ~ 36.38%
#AEDFE3 color CMYK value is (23,2,0,11).
CMYK: (23,2,0,11) C23M2Y0K11 (23%,2%,0%,11%) (0.23/0.02/0.00/0.11)
AE | DF | E3 | |
---|---|---|---|
RGB | 174 | 223 | 227 |
HSL | 185° | 48.62% | 78.63% |
HSB/HSV | 185° | 23.35% | 89.02% |
CMYK | 23.35% | 1.76% | 0.00% |
10.98% |
HEX | AE | DF | E3 |
Decimal | 174 | 223 | 227 |
Binary | 10101110 | 11011111 | 11100011 |
Octal | 256 | 337 | 343 |
Examples of css and html codes for elements with #AEDFE3 color. Also use rgb(174,223,227) instead hex code.
.myTextColor { color: #AEDFE3; }
<p style="color:#AEDFE3">This sample text font color is #AEDFE3.</p>
This text font color is #AEDFE3.
.myBgColor { background-color: #AEDFE3; }
<div style="background-color:#AEDFE3">Inner text</div>
This div background color is #AEDFE3.
.myBorderColor { border: 1px solid #AEDFE3; }
<div style="border:3px solid #AEDFE3">Div</div>
This div border color is #AEDFE3.
.myOpacity80 { color: #AEDFE3; opacity: 0.8; }
<p style="color:#AEDFE3;opacity:0.8;">80%</p>
Text with #AEDFE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDFE3;}
<p style="text-shadow: 3px 3px 1px #AEDFE3">Text here.</p>
This text has shadow with #AEDFE3 color.
.textShadow {text-shadow: 3px 3px 1px #AEDFE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDFE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDFE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDFE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDFE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDFE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDFE3; -webkit-box-shadow: 1px 1px 3px 2px #AEDFE3; box-shadow: 1px 1px 3px 2px #AEDFE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDFE3; -webkit-box-shadow: 1px 1px 3px 2px #AEDFE3; box-shadow:1px 1px 3px 2px #AEDFE3;">
Div content here</div>
This text has color #AEDFE3 on black background.
This text has color #AEDFE3 on white background.
This text has black color on #AEDFE3 background.
This text has white color on #AEDFE3 background.