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