HEX: #AC964A
RGB: (172,150,74)
#AC964A contains mainly red and green colors. Web safe color of #AC964A is #999933 (or #993).
#AC964A color RGB value is (172,150,74).
RGB: (172,150,74) (67%,59%,29%)
R 172 of 255 = 67%
G 150 of 255 = 59%
B 74 of 255 = 29%
R + G + B ~ 52%. #AC964A is middle color (not dark and not light).
R + G + B =
172 + 150 + 74 = 396 (100%)
R 172 of 396 ~ 43.43%
G 150 of 396 ~ 37.88%
B 74 of 396 ~ 18.69%
#AC964A color CMYK value is (0,13,57,33).
CMYK: (0,13,57,33) C0M13Y57K33 (0%,13%,57%,33%) (0.00/0.13/0.57/0.33)
AC | 96 | 4A | |
---|---|---|---|
RGB | 172 | 150 | 74 |
HSL | 47° | 39.84% | 48.24% |
HSB/HSV | 47° | 56.98% | 67.45% |
CMYK | 0.00% | 12.79% | 56.98% |
32.55% |
HEX | AC | 96 | 4A |
Decimal | 172 | 150 | 74 |
Binary | 10101100 | 10010110 | 1001010 |
Octal | 254 | 226 | 112 |
Examples of css and html codes for elements with #AC964A color. Also use rgb(172,150,74) instead hex code.
.myTextColor { color: #AC964A; }
<p style="color:#AC964A">This sample text font color is #AC964A.</p>
This text font color is #AC964A.
.myBgColor { background-color: #AC964A; }
<div style="background-color:#AC964A">Inner text</div>
This div background color is #AC964A.
.myBorderColor { border: 1px solid #AC964A; }
<div style="border:3px solid #AC964A">Div</div>
This div border color is #AC964A.
.myOpacity80 { color: #AC964A; opacity: 0.8; }
<p style="color:#AC964A;opacity:0.8;">80%</p>
Text with #AC964A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC964A;}
<p style="text-shadow: 3px 3px 1px #AC964A">Text here.</p>
This text has shadow with #AC964A color.
.textShadow {text-shadow: 3px 3px 1px #AC964A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC964A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC964A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC964A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC964A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC964A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC964A; -webkit-box-shadow: 1px 1px 3px 2px #AC964A; box-shadow: 1px 1px 3px 2px #AC964A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC964A; -webkit-box-shadow: 1px 1px 3px 2px #AC964A; box-shadow:1px 1px 3px 2px #AC964A;">
Div content here</div>
This text has color #AC964A on black background.
This text has color #AC964A on white background.
This text has black color on #AC964A background.
This text has white color on #AC964A background.