HEX: #AE86BE
RGB: (174,134,190)
#AE86BE contains red, green and blue colors in about the same proportion. Web safe color of #AE86BE is #9999CC (or #99C).
#AE86BE color RGB value is (174,134,190).
RGB: (174,134,190) (68%,53%,75%)
R 174 of 255 = 68%
G 134 of 255 = 53%
B 190 of 255 = 75%
R + G + B ~ 65%. #AE86BE is quite light color.
R + G + B =
174 + 134 + 190 = 498 (100%)
R 174 of 498 ~ 34.94%
G 134 of 498 ~ 26.91%
B 190 of 498 ~ 38.15%
#AE86BE color CMYK value is (8,29,0,25).
CMYK: (8,29,0,25) C8M29Y0K25 (8%,29%,0%,25%) (0.08/0.29/0.00/0.25)
AE | 86 | BE | |
---|---|---|---|
RGB | 174 | 134 | 190 |
HSL | 283° | 30.11% | 63.53% |
HSB/HSV | 283° | 29.47% | 74.51% |
CMYK | 8.42% | 29.47% | 0.00% |
25.49% |
HEX | AE | 86 | BE |
Decimal | 174 | 134 | 190 |
Binary | 10101110 | 10000110 | 10111110 |
Octal | 256 | 206 | 276 |
Examples of css and html codes for elements with #AE86BE color. Also use rgb(174,134,190) instead hex code.
.myTextColor { color: #AE86BE; }
<p style="color:#AE86BE">This sample text font color is #AE86BE.</p>
This text font color is #AE86BE.
.myBgColor { background-color: #AE86BE; }
<div style="background-color:#AE86BE">Inner text</div>
This div background color is #AE86BE.
.myBorderColor { border: 1px solid #AE86BE; }
<div style="border:3px solid #AE86BE">Div</div>
This div border color is #AE86BE.
.myOpacity80 { color: #AE86BE; opacity: 0.8; }
<p style="color:#AE86BE;opacity:0.8;">80%</p>
Text with #AE86BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE86BE;}
<p style="text-shadow: 3px 3px 1px #AE86BE">Text here.</p>
This text has shadow with #AE86BE color.
.textShadow {text-shadow: 3px 3px 1px #AE86BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE86BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE86BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE86BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE86BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE86BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE86BE; -webkit-box-shadow: 1px 1px 3px 2px #AE86BE; box-shadow: 1px 1px 3px 2px #AE86BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE86BE; -webkit-box-shadow: 1px 1px 3px 2px #AE86BE; box-shadow:1px 1px 3px 2px #AE86BE;">
Div content here</div>
This text has color #AE86BE on black background.
This text has color #AE86BE on white background.
This text has black color on #AE86BE background.
This text has white color on #AE86BE background.