HEX: #AEA473
RGB: (174,164,115)
#AEA473 contains red, green and blue colors in about the same proportion. Web safe color of #AEA473 is #999966 (or #996).
#AEA473 color RGB value is (174,164,115).
RGB: (174,164,115) (68%,64%,45%)
R 174 of 255 = 68%
G 164 of 255 = 64%
B 115 of 255 = 45%
R + G + B ~ 59%. #AEA473 is middle color (not dark and not light).
R + G + B =
174 + 164 + 115 = 453 (100%)
R 174 of 453 ~ 38.41%
G 164 of 453 ~ 36.2%
B 115 of 453 ~ 25.39%
#AEA473 color CMYK value is (0,6,34,32).
CMYK: (0,6,34,32) C0M6Y34K32 (0%,6%,34%,32%) (0.00/0.06/0.34/0.32)
AE | A4 | 73 | |
---|---|---|---|
RGB | 174 | 164 | 115 |
HSL | 50° | 26.70% | 56.67% |
HSB/HSV | 50° | 33.91% | 68.24% |
CMYK | 0.00% | 5.75% | 33.91% |
31.76% |
HEX | AE | A4 | 73 |
Decimal | 174 | 164 | 115 |
Binary | 10101110 | 10100100 | 1110011 |
Octal | 256 | 244 | 163 |
Examples of css and html codes for elements with #AEA473 color. Also use rgb(174,164,115) instead hex code.
.myTextColor { color: #AEA473; }
<p style="color:#AEA473">This sample text font color is #AEA473.</p>
This text font color is #AEA473.
.myBgColor { background-color: #AEA473; }
<div style="background-color:#AEA473">Inner text</div>
This div background color is #AEA473.
.myBorderColor { border: 1px solid #AEA473; }
<div style="border:3px solid #AEA473">Div</div>
This div border color is #AEA473.
.myOpacity80 { color: #AEA473; opacity: 0.8; }
<p style="color:#AEA473;opacity:0.8;">80%</p>
Text with #AEA473 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEA473;}
<p style="text-shadow: 3px 3px 1px #AEA473">Text here.</p>
This text has shadow with #AEA473 color.
.textShadow {text-shadow: 3px 3px 1px #AEA473, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEA473, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEA473 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEA473, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEA473, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEA473 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEA473; -webkit-box-shadow: 1px 1px 3px 2px #AEA473; box-shadow: 1px 1px 3px 2px #AEA473; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEA473; -webkit-box-shadow: 1px 1px 3px 2px #AEA473; box-shadow:1px 1px 3px 2px #AEA473;">
Div content here</div>
This text has color #AEA473 on black background.
This text has color #AEA473 on white background.
This text has black color on #AEA473 background.
This text has white color on #AEA473 background.