HEX: #AEDADB
RGB: (174,218,219)
#AEDADB contains red, green and blue colors in about the same proportion. Web safe color of #AEDADB is #99CCCC (or #9CC).
#AEDADB color RGB value is (174,218,219).
RGB: (174,218,219) (68%,85%,86%)
R 174 of 255 = 68%
G 218 of 255 = 85%
B 219 of 255 = 86%
R + G + B ~ 80%. #AEDADB is quite light color.
R + G + B =
174 + 218 + 219 = 611 (100%)
R 174 of 611 ~ 28.48%
G 218 of 611 ~ 35.68%
B 219 of 611 ~ 35.84%
#AEDADB color CMYK value is (21,0,0,14).
CMYK: (21,0,0,14) C21M0Y0K14 (21%,0%,0%,14%) (0.21/0.00/0.00/0.14)
AE | DA | DB | |
---|---|---|---|
RGB | 174 | 218 | 219 |
HSL | 181° | 38.46% | 77.06% |
HSB/HSV | 181° | 20.55% | 85.88% |
CMYK | 20.55% | 0.46% | 0.00% |
14.12% |
HEX | AE | DA | DB |
Decimal | 174 | 218 | 219 |
Binary | 10101110 | 11011010 | 11011011 |
Octal | 256 | 332 | 333 |
Examples of css and html codes for elements with #AEDADB color. Also use rgb(174,218,219) instead hex code.
.myTextColor { color: #AEDADB; }
<p style="color:#AEDADB">This sample text font color is #AEDADB.</p>
This text font color is #AEDADB.
.myBgColor { background-color: #AEDADB; }
<div style="background-color:#AEDADB">Inner text</div>
This div background color is #AEDADB.
.myBorderColor { border: 1px solid #AEDADB; }
<div style="border:3px solid #AEDADB">Div</div>
This div border color is #AEDADB.
.myOpacity80 { color: #AEDADB; opacity: 0.8; }
<p style="color:#AEDADB;opacity:0.8;">80%</p>
Text with #AEDADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDADB;}
<p style="text-shadow: 3px 3px 1px #AEDADB">Text here.</p>
This text has shadow with #AEDADB color.
.textShadow {text-shadow: 3px 3px 1px #AEDADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDADB; -webkit-box-shadow: 1px 1px 3px 2px #AEDADB; box-shadow: 1px 1px 3px 2px #AEDADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDADB; -webkit-box-shadow: 1px 1px 3px 2px #AEDADB; box-shadow:1px 1px 3px 2px #AEDADB;">
Div content here</div>
This text has color #AEDADB on black background.
This text has color #AEDADB on white background.
This text has black color on #AEDADB background.
This text has white color on #AEDADB background.