HEX: #AE8A5C
RGB: (174,138,92)
#AE8A5C contains mainly red and green colors. Web safe color of #AE8A5C is #999966 (or #996).
#AE8A5C color RGB value is (174,138,92).
RGB: (174,138,92) (68%,54%,36%)
R 174 of 255 = 68%
G 138 of 255 = 54%
B 92 of 255 = 36%
R + G + B ~ 53%. #AE8A5C is middle color (not dark and not light).
R + G + B =
174 + 138 + 92 = 404 (100%)
R 174 of 404 ~ 43.07%
G 138 of 404 ~ 34.16%
B 92 of 404 ~ 22.77%
#AE8A5C color CMYK value is (0,21,47,32).
CMYK: (0,21,47,32) C0M21Y47K32 (0%,21%,47%,32%) (0.00/0.21/0.47/0.32)
AE | 8A | 5C | |
---|---|---|---|
RGB | 174 | 138 | 92 |
HSL | 34° | 33.61% | 52.16% |
HSB/HSV | 34° | 47.13% | 68.24% |
CMYK | 0.00% | 20.69% | 47.13% |
31.76% |
HEX | AE | 8A | 5C |
Decimal | 174 | 138 | 92 |
Binary | 10101110 | 10001010 | 1011100 |
Octal | 256 | 212 | 134 |
Examples of css and html codes for elements with #AE8A5C color. Also use rgb(174,138,92) instead hex code.
.myTextColor { color: #AE8A5C; }
<p style="color:#AE8A5C">This sample text font color is #AE8A5C.</p>
This text font color is #AE8A5C.
.myBgColor { background-color: #AE8A5C; }
<div style="background-color:#AE8A5C">Inner text</div>
This div background color is #AE8A5C.
.myBorderColor { border: 1px solid #AE8A5C; }
<div style="border:3px solid #AE8A5C">Div</div>
This div border color is #AE8A5C.
.myOpacity80 { color: #AE8A5C; opacity: 0.8; }
<p style="color:#AE8A5C;opacity:0.8;">80%</p>
Text with #AE8A5C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE8A5C;}
<p style="text-shadow: 3px 3px 1px #AE8A5C">Text here.</p>
This text has shadow with #AE8A5C color.
.textShadow {text-shadow: 3px 3px 1px #AE8A5C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE8A5C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE8A5C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE8A5C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE8A5C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE8A5C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE8A5C; -webkit-box-shadow: 1px 1px 3px 2px #AE8A5C; box-shadow: 1px 1px 3px 2px #AE8A5C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE8A5C; -webkit-box-shadow: 1px 1px 3px 2px #AE8A5C; box-shadow:1px 1px 3px 2px #AE8A5C;">
Div content here</div>
This text has color #AE8A5C on black background.
This text has color #AE8A5C on white background.
This text has black color on #AE8A5C background.
This text has white color on #AE8A5C background.