HEX: #AEA6DE
RGB: (174,166,222)
#AEA6DE contains red, green and blue colors in about the same proportion. Web safe color of #AEA6DE is #9999CC (or #99C).
#AEA6DE color RGB value is (174,166,222).
RGB: (174,166,222) (68%,65%,87%)
R 174 of 255 = 68%
G 166 of 255 = 65%
B 222 of 255 = 87%
R + G + B ~ 73%. #AEA6DE is quite light color.
R + G + B =
174 + 166 + 222 = 562 (100%)
R 174 of 562 ~ 30.96%
G 166 of 562 ~ 29.54%
B 222 of 562 ~ 39.5%
#AEA6DE color CMYK value is (22,25,0,13).
CMYK: (22,25,0,13) C22M25Y0K13 (22%,25%,0%,13%) (0.22/0.25/0.00/0.13)
AE | A6 | DE | |
---|---|---|---|
RGB | 174 | 166 | 222 |
HSL | 249° | 45.90% | 76.08% |
HSB/HSV | 249° | 25.23% | 87.06% |
CMYK | 21.62% | 25.23% | 0.00% |
12.94% |
HEX | AE | A6 | DE |
Decimal | 174 | 166 | 222 |
Binary | 10101110 | 10100110 | 11011110 |
Octal | 256 | 246 | 336 |
Examples of css and html codes for elements with #AEA6DE color. Also use rgb(174,166,222) instead hex code.
.myTextColor { color: #AEA6DE; }
<p style="color:#AEA6DE">This sample text font color is #AEA6DE.</p>
This text font color is #AEA6DE.
.myBgColor { background-color: #AEA6DE; }
<div style="background-color:#AEA6DE">Inner text</div>
This div background color is #AEA6DE.
.myBorderColor { border: 1px solid #AEA6DE; }
<div style="border:3px solid #AEA6DE">Div</div>
This div border color is #AEA6DE.
.myOpacity80 { color: #AEA6DE; opacity: 0.8; }
<p style="color:#AEA6DE;opacity:0.8;">80%</p>
Text with #AEA6DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEA6DE;}
<p style="text-shadow: 3px 3px 1px #AEA6DE">Text here.</p>
This text has shadow with #AEA6DE color.
.textShadow {text-shadow: 3px 3px 1px #AEA6DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEA6DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEA6DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEA6DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEA6DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEA6DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEA6DE; -webkit-box-shadow: 1px 1px 3px 2px #AEA6DE; box-shadow: 1px 1px 3px 2px #AEA6DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEA6DE; -webkit-box-shadow: 1px 1px 3px 2px #AEA6DE; box-shadow:1px 1px 3px 2px #AEA6DE;">
Div content here</div>
This text has color #AEA6DE on black background.
This text has color #AEA6DE on white background.
This text has black color on #AEA6DE background.
This text has white color on #AEA6DE background.