HEX: #ACBD72
RGB: (172,189,114)
#ACBD72 contains mainly red and green colors. Web safe color of #ACBD72 is #99CC66 (or #9C6).
#ACBD72 color RGB value is (172,189,114).
RGB: (172,189,114) (67%,74%,45%)
R 172 of 255 = 67%
G 189 of 255 = 74%
B 114 of 255 = 45%
R + G + B ~ 62%. #ACBD72 is quite light color.
R + G + B =
172 + 189 + 114 = 475 (100%)
R 172 of 475 ~ 36.21%
G 189 of 475 ~ 39.79%
B 114 of 475 ~ 24%
#ACBD72 color CMYK value is (9,0,40,26).
CMYK: (9,0,40,26) C9M0Y40K26 (9%,0%,40%,26%) (0.09/0.00/0.40/0.26)
AC | BD | 72 | |
---|---|---|---|
RGB | 172 | 189 | 114 |
HSL | 74° | 36.23% | 59.41% |
HSB/HSV | 74° | 39.68% | 74.12% |
CMYK | 8.99% | 0.00% | 39.68% |
25.88% |
HEX | AC | BD | 72 |
Decimal | 172 | 189 | 114 |
Binary | 10101100 | 10111101 | 1110010 |
Octal | 254 | 275 | 162 |
Examples of css and html codes for elements with #ACBD72 color. Also use rgb(172,189,114) instead hex code.
.myTextColor { color: #ACBD72; }
<p style="color:#ACBD72">This sample text font color is #ACBD72.</p>
This text font color is #ACBD72.
.myBgColor { background-color: #ACBD72; }
<div style="background-color:#ACBD72">Inner text</div>
This div background color is #ACBD72.
.myBorderColor { border: 1px solid #ACBD72; }
<div style="border:3px solid #ACBD72">Div</div>
This div border color is #ACBD72.
.myOpacity80 { color: #ACBD72; opacity: 0.8; }
<p style="color:#ACBD72;opacity:0.8;">80%</p>
Text with #ACBD72 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACBD72;}
<p style="text-shadow: 3px 3px 1px #ACBD72">Text here.</p>
This text has shadow with #ACBD72 color.
.textShadow {text-shadow: 3px 3px 1px #ACBD72, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACBD72, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACBD72 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACBD72, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACBD72, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACBD72 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACBD72; -webkit-box-shadow: 1px 1px 3px 2px #ACBD72; box-shadow: 1px 1px 3px 2px #ACBD72; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACBD72; -webkit-box-shadow: 1px 1px 3px 2px #ACBD72; box-shadow:1px 1px 3px 2px #ACBD72;">
Div content here</div>
This text has color #ACBD72 on black background.
This text has color #ACBD72 on white background.
This text has black color on #ACBD72 background.
This text has white color on #ACBD72 background.