HEX: #AE7FAF
RGB: (174,127,175)
#AE7FAF contains red, green and blue colors in about the same proportion. Web safe color of #AE7FAF is #996699 (or #969).
#AE7FAF color RGB value is (174,127,175).
RGB: (174,127,175) (68%,50%,69%)
R 174 of 255 = 68%
G 127 of 255 = 50%
B 175 of 255 = 69%
R + G + B ~ 62%. #AE7FAF is quite light color.
R + G + B =
174 + 127 + 175 = 476 (100%)
R 174 of 476 ~ 36.55%
G 127 of 476 ~ 26.68%
B 175 of 476 ~ 36.76%
#AE7FAF color CMYK value is (1,27,0,31).
CMYK: (1,27,0,31) C1M27Y0K31 (1%,27%,0%,31%) (0.01/0.27/0.00/0.31)
AE | 7F | AF | |
---|---|---|---|
RGB | 174 | 127 | 175 |
HSL | 299° | 23.08% | 59.22% |
HSB/HSV | 299° | 27.43% | 68.63% |
CMYK | 0.57% | 27.43% | 0.00% |
31.37% |
HEX | AE | 7F | AF |
Decimal | 174 | 127 | 175 |
Binary | 10101110 | 1111111 | 10101111 |
Octal | 256 | 177 | 257 |
Examples of css and html codes for elements with #AE7FAF color. Also use rgb(174,127,175) instead hex code.
.myTextColor { color: #AE7FAF; }
<p style="color:#AE7FAF">This sample text font color is #AE7FAF.</p>
This text font color is #AE7FAF.
.myBgColor { background-color: #AE7FAF; }
<div style="background-color:#AE7FAF">Inner text</div>
This div background color is #AE7FAF.
.myBorderColor { border: 1px solid #AE7FAF; }
<div style="border:3px solid #AE7FAF">Div</div>
This div border color is #AE7FAF.
.myOpacity80 { color: #AE7FAF; opacity: 0.8; }
<p style="color:#AE7FAF;opacity:0.8;">80%</p>
Text with #AE7FAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE7FAF;}
<p style="text-shadow: 3px 3px 1px #AE7FAF">Text here.</p>
This text has shadow with #AE7FAF color.
.textShadow {text-shadow: 3px 3px 1px #AE7FAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE7FAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE7FAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE7FAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE7FAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE7FAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE7FAF; -webkit-box-shadow: 1px 1px 3px 2px #AE7FAF; box-shadow: 1px 1px 3px 2px #AE7FAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE7FAF; -webkit-box-shadow: 1px 1px 3px 2px #AE7FAF; box-shadow:1px 1px 3px 2px #AE7FAF;">
Div content here</div>
This text has color #AE7FAF on black background.
This text has color #AE7FAF on white background.
This text has black color on #AE7FAF background.
This text has white color on #AE7FAF background.