HEX: #ACB56D
RGB: (172,181,109)
#ACB56D contains mainly red and green colors. Web safe color of #ACB56D is #99CC66 (or #9C6).
#ACB56D color RGB value is (172,181,109).
RGB: (172,181,109) (67%,71%,43%)
R 172 of 255 = 67%
G 181 of 255 = 71%
B 109 of 255 = 43%
R + G + B ~ 60%. #ACB56D is middle color (not dark and not light).
R + G + B =
172 + 181 + 109 = 462 (100%)
R 172 of 462 ~ 37.23%
G 181 of 462 ~ 39.18%
B 109 of 462 ~ 23.59%
#ACB56D color CMYK value is (5,0,40,29).
CMYK: (5,0,40,29) C5M0Y40K29 (5%,0%,40%,29%) (0.05/0.00/0.40/0.29)
AC | B5 | 6D | |
---|---|---|---|
RGB | 172 | 181 | 109 |
HSL | 68° | 32.73% | 56.86% |
HSB/HSV | 68° | 39.78% | 70.98% |
CMYK | 4.97% | 0.00% | 39.78% |
29.02% |
HEX | AC | B5 | 6D |
Decimal | 172 | 181 | 109 |
Binary | 10101100 | 10110101 | 1101101 |
Octal | 254 | 265 | 155 |
Examples of css and html codes for elements with #ACB56D color. Also use rgb(172,181,109) instead hex code.
.myTextColor { color: #ACB56D; }
<p style="color:#ACB56D">This sample text font color is #ACB56D.</p>
This text font color is #ACB56D.
.myBgColor { background-color: #ACB56D; }
<div style="background-color:#ACB56D">Inner text</div>
This div background color is #ACB56D.
.myBorderColor { border: 1px solid #ACB56D; }
<div style="border:3px solid #ACB56D">Div</div>
This div border color is #ACB56D.
.myOpacity80 { color: #ACB56D; opacity: 0.8; }
<p style="color:#ACB56D;opacity:0.8;">80%</p>
Text with #ACB56D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACB56D;}
<p style="text-shadow: 3px 3px 1px #ACB56D">Text here.</p>
This text has shadow with #ACB56D color.
.textShadow {text-shadow: 3px 3px 1px #ACB56D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACB56D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACB56D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACB56D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACB56D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACB56D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACB56D; -webkit-box-shadow: 1px 1px 3px 2px #ACB56D; box-shadow: 1px 1px 3px 2px #ACB56D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACB56D; -webkit-box-shadow: 1px 1px 3px 2px #ACB56D; box-shadow:1px 1px 3px 2px #ACB56D;">
Div content here</div>
This text has color #ACB56D on black background.
This text has color #ACB56D on white background.
This text has black color on #ACB56D background.
This text has white color on #ACB56D background.