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