HEX: #AE937C
RGB: (174,147,124)
#AE937C contains red, green and blue colors in about the same proportion. Web safe color of #AE937C is #999966 (or #996).
#AE937C color RGB value is (174,147,124).
RGB: (174,147,124) (68%,58%,49%)
R 174 of 255 = 68%
G 147 of 255 = 58%
B 124 of 255 = 49%
R + G + B ~ 58%. #AE937C is middle color (not dark and not light).
R + G + B =
174 + 147 + 124 = 445 (100%)
R 174 of 445 ~ 39.1%
G 147 of 445 ~ 33.03%
B 124 of 445 ~ 27.87%
#AE937C color CMYK value is (0,16,29,32).
CMYK: (0,16,29,32) C0M16Y29K32 (0%,16%,29%,32%) (0.00/0.16/0.29/0.32)
AE | 93 | 7C | |
---|---|---|---|
RGB | 174 | 147 | 124 |
HSL | 28° | 23.58% | 58.43% |
HSB/HSV | 28° | 28.74% | 68.24% |
CMYK | 0.00% | 15.52% | 28.74% |
31.76% |
HEX | AE | 93 | 7C |
Decimal | 174 | 147 | 124 |
Binary | 10101110 | 10010011 | 1111100 |
Octal | 256 | 223 | 174 |
Examples of css and html codes for elements with #AE937C color. Also use rgb(174,147,124) instead hex code.
.myTextColor { color: #AE937C; }
<p style="color:#AE937C">This sample text font color is #AE937C.</p>
This text font color is #AE937C.
.myBgColor { background-color: #AE937C; }
<div style="background-color:#AE937C">Inner text</div>
This div background color is #AE937C.
.myBorderColor { border: 1px solid #AE937C; }
<div style="border:3px solid #AE937C">Div</div>
This div border color is #AE937C.
.myOpacity80 { color: #AE937C; opacity: 0.8; }
<p style="color:#AE937C;opacity:0.8;">80%</p>
Text with #AE937C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE937C;}
<p style="text-shadow: 3px 3px 1px #AE937C">Text here.</p>
This text has shadow with #AE937C color.
.textShadow {text-shadow: 3px 3px 1px #AE937C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE937C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE937C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE937C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE937C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE937C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE937C; -webkit-box-shadow: 1px 1px 3px 2px #AE937C; box-shadow: 1px 1px 3px 2px #AE937C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE937C; -webkit-box-shadow: 1px 1px 3px 2px #AE937C; box-shadow:1px 1px 3px 2px #AE937C;">
Div content here</div>
This text has color #AE937C on black background.
This text has color #AE937C on white background.
This text has black color on #AE937C background.
This text has white color on #AE937C background.