HEX: #AE93CC
RGB: (174,147,204)
#AE93CC contains red, green and blue colors in about the same proportion. Web safe color of #AE93CC is #9999CC (or #99C).
#AE93CC color RGB value is (174,147,204).
RGB: (174,147,204) (68%,58%,80%)
R 174 of 255 = 68%
G 147 of 255 = 58%
B 204 of 255 = 80%
R + G + B ~ 69%. #AE93CC is quite light color.
R + G + B =
174 + 147 + 204 = 525 (100%)
R 174 of 525 ~ 33.14%
G 147 of 525 ~ 28%
B 204 of 525 ~ 38.86%
#AE93CC color CMYK value is (15,28,0,20).
CMYK: (15,28,0,20) C15M28Y0K20 (15%,28%,0%,20%) (0.15/0.28/0.00/0.20)
AE | 93 | CC | |
---|---|---|---|
RGB | 174 | 147 | 204 |
HSL | 268° | 35.85% | 68.82% |
HSB/HSV | 268° | 27.94% | 80.00% |
CMYK | 14.71% | 27.94% | 0.00% |
20.00% |
HEX | AE | 93 | CC |
Decimal | 174 | 147 | 204 |
Binary | 10101110 | 10010011 | 11001100 |
Octal | 256 | 223 | 314 |
Examples of css and html codes for elements with #AE93CC color. Also use rgb(174,147,204) instead hex code.
.myTextColor { color: #AE93CC; }
<p style="color:#AE93CC">This sample text font color is #AE93CC.</p>
This text font color is #AE93CC.
.myBgColor { background-color: #AE93CC; }
<div style="background-color:#AE93CC">Inner text</div>
This div background color is #AE93CC.
.myBorderColor { border: 1px solid #AE93CC; }
<div style="border:3px solid #AE93CC">Div</div>
This div border color is #AE93CC.
.myOpacity80 { color: #AE93CC; opacity: 0.8; }
<p style="color:#AE93CC;opacity:0.8;">80%</p>
Text with #AE93CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE93CC;}
<p style="text-shadow: 3px 3px 1px #AE93CC">Text here.</p>
This text has shadow with #AE93CC color.
.textShadow {text-shadow: 3px 3px 1px #AE93CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE93CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE93CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE93CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE93CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE93CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE93CC; -webkit-box-shadow: 1px 1px 3px 2px #AE93CC; box-shadow: 1px 1px 3px 2px #AE93CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE93CC; -webkit-box-shadow: 1px 1px 3px 2px #AE93CC; box-shadow:1px 1px 3px 2px #AE93CC;">
Div content here</div>
This text has color #AE93CC on black background.
This text has color #AE93CC on white background.
This text has black color on #AE93CC background.
This text has white color on #AE93CC background.