HEX: #AE9853
RGB: (174,152,83)
#AE9853 contains mainly red and green colors. Web safe color of #AE9853 is #999966 (or #996).
#AE9853 color RGB value is (174,152,83).
RGB: (174,152,83) (68%,60%,33%)
R 174 of 255 = 68%
G 152 of 255 = 60%
B 83 of 255 = 33%
R + G + B ~ 54%. #AE9853 is middle color (not dark and not light).
R + G + B =
174 + 152 + 83 = 409 (100%)
R 174 of 409 ~ 42.54%
G 152 of 409 ~ 37.16%
B 83 of 409 ~ 20.29%
#AE9853 color CMYK value is (0,13,52,32).
CMYK: (0,13,52,32) C0M13Y52K32 (0%,13%,52%,32%) (0.00/0.13/0.52/0.32)
AE | 98 | 53 | |
---|---|---|---|
RGB | 174 | 152 | 83 |
HSL | 45° | 35.97% | 50.39% |
HSB/HSV | 45° | 52.30% | 68.24% |
CMYK | 0.00% | 12.64% | 52.30% |
31.76% |
HEX | AE | 98 | 53 |
Decimal | 174 | 152 | 83 |
Binary | 10101110 | 10011000 | 1010011 |
Octal | 256 | 230 | 123 |
Examples of css and html codes for elements with #AE9853 color. Also use rgb(174,152,83) instead hex code.
.myTextColor { color: #AE9853; }
<p style="color:#AE9853">This sample text font color is #AE9853.</p>
This text font color is #AE9853.
.myBgColor { background-color: #AE9853; }
<div style="background-color:#AE9853">Inner text</div>
This div background color is #AE9853.
.myBorderColor { border: 1px solid #AE9853; }
<div style="border:3px solid #AE9853">Div</div>
This div border color is #AE9853.
.myOpacity80 { color: #AE9853; opacity: 0.8; }
<p style="color:#AE9853;opacity:0.8;">80%</p>
Text with #AE9853 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE9853;}
<p style="text-shadow: 3px 3px 1px #AE9853">Text here.</p>
This text has shadow with #AE9853 color.
.textShadow {text-shadow: 3px 3px 1px #AE9853, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE9853, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE9853 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE9853, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE9853, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE9853 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE9853; -webkit-box-shadow: 1px 1px 3px 2px #AE9853; box-shadow: 1px 1px 3px 2px #AE9853; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE9853; -webkit-box-shadow: 1px 1px 3px 2px #AE9853; box-shadow:1px 1px 3px 2px #AE9853;">
Div content here</div>
This text has color #AE9853 on black background.
This text has color #AE9853 on white background.
This text has black color on #AE9853 background.
This text has white color on #AE9853 background.