HEX: #AE966F
RGB: (174,150,111)
#AE966F contains mainly red and green colors. Web safe color of #AE966F is #999966 (or #996).
#AE966F color RGB value is (174,150,111).
RGB: (174,150,111) (68%,59%,44%)
R 174 of 255 = 68%
G 150 of 255 = 59%
B 111 of 255 = 44%
R + G + B ~ 57%. #AE966F is middle color (not dark and not light).
R + G + B =
174 + 150 + 111 = 435 (100%)
R 174 of 435 ~ 40%
G 150 of 435 ~ 34.48%
B 111 of 435 ~ 25.52%
#AE966F color CMYK value is (0,14,36,32).
CMYK: (0,14,36,32) C0M14Y36K32 (0%,14%,36%,32%) (0.00/0.14/0.36/0.32)
AE | 96 | 6F | |
---|---|---|---|
RGB | 174 | 150 | 111 |
HSL | 37° | 28.00% | 55.88% |
HSB/HSV | 37° | 36.21% | 68.24% |
CMYK | 0.00% | 13.79% | 36.21% |
31.76% |
HEX | AE | 96 | 6F |
Decimal | 174 | 150 | 111 |
Binary | 10101110 | 10010110 | 1101111 |
Octal | 256 | 226 | 157 |
Examples of css and html codes for elements with #AE966F color. Also use rgb(174,150,111) instead hex code.
.myTextColor { color: #AE966F; }
<p style="color:#AE966F">This sample text font color is #AE966F.</p>
This text font color is #AE966F.
.myBgColor { background-color: #AE966F; }
<div style="background-color:#AE966F">Inner text</div>
This div background color is #AE966F.
.myBorderColor { border: 1px solid #AE966F; }
<div style="border:3px solid #AE966F">Div</div>
This div border color is #AE966F.
.myOpacity80 { color: #AE966F; opacity: 0.8; }
<p style="color:#AE966F;opacity:0.8;">80%</p>
Text with #AE966F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE966F;}
<p style="text-shadow: 3px 3px 1px #AE966F">Text here.</p>
This text has shadow with #AE966F color.
.textShadow {text-shadow: 3px 3px 1px #AE966F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE966F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE966F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE966F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE966F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE966F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE966F; -webkit-box-shadow: 1px 1px 3px 2px #AE966F; box-shadow: 1px 1px 3px 2px #AE966F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE966F; -webkit-box-shadow: 1px 1px 3px 2px #AE966F; box-shadow:1px 1px 3px 2px #AE966F;">
Div content here</div>
This text has color #AE966F on black background.
This text has color #AE966F on white background.
This text has black color on #AE966F background.
This text has white color on #AE966F background.