HEX: #AE9060
RGB: (174,144,96)
#AE9060 contains mainly red and green colors. Web safe color of #AE9060 is #999966 (or #996).
#AE9060 color RGB value is (174,144,96).
RGB: (174,144,96) (68%,56%,38%)
R 174 of 255 = 68%
G 144 of 255 = 56%
B 96 of 255 = 38%
R + G + B ~ 54%. #AE9060 is middle color (not dark and not light).
R + G + B =
174 + 144 + 96 = 414 (100%)
R 174 of 414 ~ 42.03%
G 144 of 414 ~ 34.78%
B 96 of 414 ~ 23.19%
#AE9060 color CMYK value is (0,17,45,32).
CMYK: (0,17,45,32) C0M17Y45K32 (0%,17%,45%,32%) (0.00/0.17/0.45/0.32)
AE | 90 | 60 | |
---|---|---|---|
RGB | 174 | 144 | 96 |
HSL | 37° | 32.50% | 52.94% |
HSB/HSV | 37° | 44.83% | 68.24% |
CMYK | 0.00% | 17.24% | 44.83% |
31.76% |
HEX | AE | 90 | 60 |
Decimal | 174 | 144 | 96 |
Binary | 10101110 | 10010000 | 1100000 |
Octal | 256 | 220 | 140 |
Examples of css and html codes for elements with #AE9060 color. Also use rgb(174,144,96) instead hex code.
.myTextColor { color: #AE9060; }
<p style="color:#AE9060">This sample text font color is #AE9060.</p>
This text font color is #AE9060.
.myBgColor { background-color: #AE9060; }
<div style="background-color:#AE9060">Inner text</div>
This div background color is #AE9060.
.myBorderColor { border: 1px solid #AE9060; }
<div style="border:3px solid #AE9060">Div</div>
This div border color is #AE9060.
.myOpacity80 { color: #AE9060; opacity: 0.8; }
<p style="color:#AE9060;opacity:0.8;">80%</p>
Text with #AE9060 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE9060;}
<p style="text-shadow: 3px 3px 1px #AE9060">Text here.</p>
This text has shadow with #AE9060 color.
.textShadow {text-shadow: 3px 3px 1px #AE9060, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE9060, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE9060 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE9060, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE9060, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE9060 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE9060; -webkit-box-shadow: 1px 1px 3px 2px #AE9060; box-shadow: 1px 1px 3px 2px #AE9060; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE9060; -webkit-box-shadow: 1px 1px 3px 2px #AE9060; box-shadow:1px 1px 3px 2px #AE9060;">
Div content here</div>
This text has color #AE9060 on black background.
This text has color #AE9060 on white background.
This text has black color on #AE9060 background.
This text has white color on #AE9060 background.