HEX: #AE8DD6
RGB: (174,141,214)
#AE8DD6 contains mainly red and blue colors. Web safe color of #AE8DD6 is #9999CC (or #99C).
#AE8DD6 color RGB value is (174,141,214).
RGB: (174,141,214) (68%,55%,84%)
R 174 of 255 = 68%
G 141 of 255 = 55%
B 214 of 255 = 84%
R + G + B ~ 69%. #AE8DD6 is quite light color.
R + G + B =
174 + 141 + 214 = 529 (100%)
R 174 of 529 ~ 32.89%
G 141 of 529 ~ 26.65%
B 214 of 529 ~ 40.45%
#AE8DD6 color CMYK value is (19,34,0,16).
CMYK: (19,34,0,16) C19M34Y0K16 (19%,34%,0%,16%) (0.19/0.34/0.00/0.16)
AE | 8D | D6 | |
---|---|---|---|
RGB | 174 | 141 | 214 |
HSL | 267° | 47.10% | 69.61% |
HSB/HSV | 267° | 34.11% | 83.92% |
CMYK | 18.69% | 34.11% | 0.00% |
16.08% |
HEX | AE | 8D | D6 |
Decimal | 174 | 141 | 214 |
Binary | 10101110 | 10001101 | 11010110 |
Octal | 256 | 215 | 326 |
Examples of css and html codes for elements with #AE8DD6 color. Also use rgb(174,141,214) instead hex code.
.myTextColor { color: #AE8DD6; }
<p style="color:#AE8DD6">This sample text font color is #AE8DD6.</p>
This text font color is #AE8DD6.
.myBgColor { background-color: #AE8DD6; }
<div style="background-color:#AE8DD6">Inner text</div>
This div background color is #AE8DD6.
.myBorderColor { border: 1px solid #AE8DD6; }
<div style="border:3px solid #AE8DD6">Div</div>
This div border color is #AE8DD6.
.myOpacity80 { color: #AE8DD6; opacity: 0.8; }
<p style="color:#AE8DD6;opacity:0.8;">80%</p>
Text with #AE8DD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE8DD6;}
<p style="text-shadow: 3px 3px 1px #AE8DD6">Text here.</p>
This text has shadow with #AE8DD6 color.
.textShadow {text-shadow: 3px 3px 1px #AE8DD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE8DD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE8DD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE8DD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE8DD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE8DD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE8DD6; -webkit-box-shadow: 1px 1px 3px 2px #AE8DD6; box-shadow: 1px 1px 3px 2px #AE8DD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE8DD6; -webkit-box-shadow: 1px 1px 3px 2px #AE8DD6; box-shadow:1px 1px 3px 2px #AE8DD6;">
Div content here</div>
This text has color #AE8DD6 on black background.
This text has color #AE8DD6 on white background.
This text has black color on #AE8DD6 background.
This text has white color on #AE8DD6 background.