HEX: #AC977E
RGB: (172,151,126)
#AC977E contains red, green and blue colors in about the same proportion. Web safe color of #AC977E is #999966 (or #996).
#AC977E color RGB value is (172,151,126).
RGB: (172,151,126) (67%,59%,49%)
R 172 of 255 = 67%
G 151 of 255 = 59%
B 126 of 255 = 49%
R + G + B ~ 58%. #AC977E is middle color (not dark and not light).
R + G + B =
172 + 151 + 126 = 449 (100%)
R 172 of 449 ~ 38.31%
G 151 of 449 ~ 33.63%
B 126 of 449 ~ 28.06%
#AC977E color CMYK value is (0,12,27,33).
CMYK: (0,12,27,33) C0M12Y27K33 (0%,12%,27%,33%) (0.00/0.12/0.27/0.33)
AC | 97 | 7E | |
---|---|---|---|
RGB | 172 | 151 | 126 |
HSL | 33° | 21.70% | 58.43% |
HSB/HSV | 33° | 26.74% | 67.45% |
CMYK | 0.00% | 12.21% | 26.74% |
32.55% |
HEX | AC | 97 | 7E |
Decimal | 172 | 151 | 126 |
Binary | 10101100 | 10010111 | 1111110 |
Octal | 254 | 227 | 176 |
Examples of css and html codes for elements with #AC977E color. Also use rgb(172,151,126) instead hex code.
.myTextColor { color: #AC977E; }
<p style="color:#AC977E">This sample text font color is #AC977E.</p>
This text font color is #AC977E.
.myBgColor { background-color: #AC977E; }
<div style="background-color:#AC977E">Inner text</div>
This div background color is #AC977E.
.myBorderColor { border: 1px solid #AC977E; }
<div style="border:3px solid #AC977E">Div</div>
This div border color is #AC977E.
.myOpacity80 { color: #AC977E; opacity: 0.8; }
<p style="color:#AC977E;opacity:0.8;">80%</p>
Text with #AC977E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC977E;}
<p style="text-shadow: 3px 3px 1px #AC977E">Text here.</p>
This text has shadow with #AC977E color.
.textShadow {text-shadow: 3px 3px 1px #AC977E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC977E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC977E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC977E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC977E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC977E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC977E; -webkit-box-shadow: 1px 1px 3px 2px #AC977E; box-shadow: 1px 1px 3px 2px #AC977E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC977E; -webkit-box-shadow: 1px 1px 3px 2px #AC977E; box-shadow:1px 1px 3px 2px #AC977E;">
Div content here</div>
This text has color #AC977E on black background.
This text has color #AC977E on white background.
This text has black color on #AC977E background.
This text has white color on #AC977E background.