HEX: #AE747E
RGB: (174,116,126)
#AE747E contains red, green and blue colors in about the same proportion. Web safe color of #AE747E is #996666 (or #966).
#AE747E color RGB value is (174,116,126).
RGB: (174,116,126) (68%,45%,49%)
R 174 of 255 = 68%
G 116 of 255 = 45%
B 126 of 255 = 49%
R + G + B ~ 54%. #AE747E is middle color (not dark and not light).
R + G + B =
174 + 116 + 126 = 416 (100%)
R 174 of 416 ~ 41.83%
G 116 of 416 ~ 27.88%
B 126 of 416 ~ 30.29%
#AE747E color CMYK value is (0,33,28,32).
CMYK: (0,33,28,32) C0M33Y28K32 (0%,33%,28%,32%) (0.00/0.33/0.28/0.32)
AE | 74 | 7E | |
---|---|---|---|
RGB | 174 | 116 | 126 |
HSL | 350° | 26.36% | 56.86% |
HSB/HSV | 350° | 33.33% | 68.24% |
CMYK | 0.00% | 33.33% | 27.59% |
31.76% |
HEX | AE | 74 | 7E |
Decimal | 174 | 116 | 126 |
Binary | 10101110 | 1110100 | 1111110 |
Octal | 256 | 164 | 176 |
Examples of css and html codes for elements with #AE747E color. Also use rgb(174,116,126) instead hex code.
.myTextColor { color: #AE747E; }
<p style="color:#AE747E">This sample text font color is #AE747E.</p>
This text font color is #AE747E.
.myBgColor { background-color: #AE747E; }
<div style="background-color:#AE747E">Inner text</div>
This div background color is #AE747E.
.myBorderColor { border: 1px solid #AE747E; }
<div style="border:3px solid #AE747E">Div</div>
This div border color is #AE747E.
.myOpacity80 { color: #AE747E; opacity: 0.8; }
<p style="color:#AE747E;opacity:0.8;">80%</p>
Text with #AE747E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE747E;}
<p style="text-shadow: 3px 3px 1px #AE747E">Text here.</p>
This text has shadow with #AE747E color.
.textShadow {text-shadow: 3px 3px 1px #AE747E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE747E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE747E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE747E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE747E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE747E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE747E; -webkit-box-shadow: 1px 1px 3px 2px #AE747E; box-shadow: 1px 1px 3px 2px #AE747E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE747E; -webkit-box-shadow: 1px 1px 3px 2px #AE747E; box-shadow:1px 1px 3px 2px #AE747E;">
Div content here</div>
This text has color #AE747E on black background.
This text has color #AE747E on white background.
This text has black color on #AE747E background.
This text has white color on #AE747E background.