HEX: #AAAEDB
RGB: (170,174,219)
#AAAEDB contains red, green and blue colors in about the same proportion. Web safe color of #AAAEDB is #9999CC (or #99C).
#AAAEDB color RGB value is (170,174,219).
RGB: (170,174,219) (67%,68%,86%)
R 170 of 255 = 67%
G 174 of 255 = 68%
B 219 of 255 = 86%
R + G + B ~ 74%. #AAAEDB is quite light color.
R + G + B =
170 + 174 + 219 = 563 (100%)
R 170 of 563 ~ 30.2%
G 174 of 563 ~ 30.91%
B 219 of 563 ~ 38.9%
#AAAEDB color CMYK value is (22,21,0,14).
CMYK: (22,21,0,14) C22M21Y0K14 (22%,21%,0%,14%) (0.22/0.21/0.00/0.14)
AA | AE | DB | |
---|---|---|---|
RGB | 170 | 174 | 219 |
HSL | 235° | 40.50% | 76.27% |
HSB/HSV | 235° | 22.37% | 85.88% |
CMYK | 22.37% | 20.55% | 0.00% |
14.12% |
HEX | AA | AE | DB |
Decimal | 170 | 174 | 219 |
Binary | 10101010 | 10101110 | 11011011 |
Octal | 252 | 256 | 333 |
Examples of css and html codes for elements with #AAAEDB color. Also use rgb(170,174,219) instead hex code.
.myTextColor { color: #AAAEDB; }
<p style="color:#AAAEDB">This sample text font color is #AAAEDB.</p>
This text font color is #AAAEDB.
.myBgColor { background-color: #AAAEDB; }
<div style="background-color:#AAAEDB">Inner text</div>
This div background color is #AAAEDB.
.myBorderColor { border: 1px solid #AAAEDB; }
<div style="border:3px solid #AAAEDB">Div</div>
This div border color is #AAAEDB.
.myOpacity80 { color: #AAAEDB; opacity: 0.8; }
<p style="color:#AAAEDB;opacity:0.8;">80%</p>
Text with #AAAEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AAAEDB;}
<p style="text-shadow: 3px 3px 1px #AAAEDB">Text here.</p>
This text has shadow with #AAAEDB color.
.textShadow {text-shadow: 3px 3px 1px #AAAEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AAAEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AAAEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AAAEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AAAEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AAAEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AAAEDB; -webkit-box-shadow: 1px 1px 3px 2px #AAAEDB; box-shadow: 1px 1px 3px 2px #AAAEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AAAEDB; -webkit-box-shadow: 1px 1px 3px 2px #AAAEDB; box-shadow:1px 1px 3px 2px #AAAEDB;">
Div content here</div>
This text has color #AAAEDB on black background.
This text has color #AAAEDB on white background.
This text has black color on #AAAEDB background.
This text has white color on #AAAEDB background.