HEX: #ACAF7D
RGB: (172,175,125)
#ACAF7D contains red, green and blue colors in about the same proportion. Web safe color of #ACAF7D is #999966 (or #996).
#ACAF7D color RGB value is (172,175,125).
RGB: (172,175,125) (67%,69%,49%)
R 172 of 255 = 67%
G 175 of 255 = 69%
B 125 of 255 = 49%
R + G + B ~ 62%. #ACAF7D is quite light color.
R + G + B =
172 + 175 + 125 = 472 (100%)
R 172 of 472 ~ 36.44%
G 175 of 472 ~ 37.08%
B 125 of 472 ~ 26.48%
#ACAF7D color CMYK value is (2,0,29,31).
CMYK: (2,0,29,31) C2M0Y29K31 (2%,0%,29%,31%) (0.02/0.00/0.29/0.31)
AC | AF | 7D | |
---|---|---|---|
RGB | 172 | 175 | 125 |
HSL | 64° | 23.81% | 58.82% |
HSB/HSV | 64° | 28.57% | 68.63% |
CMYK | 1.71% | 0.00% | 28.57% |
31.37% |
HEX | AC | AF | 7D |
Decimal | 172 | 175 | 125 |
Binary | 10101100 | 10101111 | 1111101 |
Octal | 254 | 257 | 175 |
Examples of css and html codes for elements with #ACAF7D color. Also use rgb(172,175,125) instead hex code.
.myTextColor { color: #ACAF7D; }
<p style="color:#ACAF7D">This sample text font color is #ACAF7D.</p>
This text font color is #ACAF7D.
.myBgColor { background-color: #ACAF7D; }
<div style="background-color:#ACAF7D">Inner text</div>
This div background color is #ACAF7D.
.myBorderColor { border: 1px solid #ACAF7D; }
<div style="border:3px solid #ACAF7D">Div</div>
This div border color is #ACAF7D.
.myOpacity80 { color: #ACAF7D; opacity: 0.8; }
<p style="color:#ACAF7D;opacity:0.8;">80%</p>
Text with #ACAF7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACAF7D;}
<p style="text-shadow: 3px 3px 1px #ACAF7D">Text here.</p>
This text has shadow with #ACAF7D color.
.textShadow {text-shadow: 3px 3px 1px #ACAF7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACAF7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACAF7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACAF7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACAF7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACAF7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACAF7D; -webkit-box-shadow: 1px 1px 3px 2px #ACAF7D; box-shadow: 1px 1px 3px 2px #ACAF7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACAF7D; -webkit-box-shadow: 1px 1px 3px 2px #ACAF7D; box-shadow:1px 1px 3px 2px #ACAF7D;">
Div content here</div>
This text has color #ACAF7D on black background.
This text has color #ACAF7D on white background.
This text has black color on #ACAF7D background.
This text has white color on #ACAF7D background.