HEX: #AE8D28
RGB: (174,141,40)
#AE8D28 contains mainly red and green colors. Web safe color of #AE8D28 is #999933 (or #993).
#AE8D28 color RGB value is (174,141,40).
RGB: (174,141,40) (68%,55%,16%)
R 174 of 255 = 68%
G 141 of 255 = 55%
B 40 of 255 = 16%
R + G + B ~ 46%. #AE8D28 is middle color (not dark and not light).
R + G + B =
174 + 141 + 40 = 355 (100%)
R 174 of 355 ~ 49.01%
G 141 of 355 ~ 39.72%
B 40 of 355 ~ 11.27%
#AE8D28 color CMYK value is (0,19,77,32).
CMYK: (0,19,77,32) C0M19Y77K32 (0%,19%,77%,32%) (0.00/0.19/0.77/0.32)
AE | 8D | 28 | |
---|---|---|---|
RGB | 174 | 141 | 40 |
HSL | 45° | 62.62% | 41.96% |
HSB/HSV | 45° | 77.01% | 68.24% |
CMYK | 0.00% | 18.97% | 77.01% |
31.76% |
HEX | AE | 8D | 28 |
Decimal | 174 | 141 | 40 |
Binary | 10101110 | 10001101 | 101000 |
Octal | 256 | 215 | 50 |
Examples of css and html codes for elements with #AE8D28 color. Also use rgb(174,141,40) instead hex code.
.myTextColor { color: #AE8D28; }
<p style="color:#AE8D28">This sample text font color is #AE8D28.</p>
This text font color is #AE8D28.
.myBgColor { background-color: #AE8D28; }
<div style="background-color:#AE8D28">Inner text</div>
This div background color is #AE8D28.
.myBorderColor { border: 1px solid #AE8D28; }
<div style="border:3px solid #AE8D28">Div</div>
This div border color is #AE8D28.
.myOpacity80 { color: #AE8D28; opacity: 0.8; }
<p style="color:#AE8D28;opacity:0.8;">80%</p>
Text with #AE8D28 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE8D28;}
<p style="text-shadow: 3px 3px 1px #AE8D28">Text here.</p>
This text has shadow with #AE8D28 color.
.textShadow {text-shadow: 3px 3px 1px #AE8D28, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE8D28, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE8D28 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE8D28, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE8D28, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE8D28 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE8D28; -webkit-box-shadow: 1px 1px 3px 2px #AE8D28; box-shadow: 1px 1px 3px 2px #AE8D28; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE8D28; -webkit-box-shadow: 1px 1px 3px 2px #AE8D28; box-shadow:1px 1px 3px 2px #AE8D28;">
Div content here</div>
This text has color #AE8D28 on black background.
This text has color #AE8D28 on white background.
This text has black color on #AE8D28 background.
This text has white color on #AE8D28 background.