HEX: #ACC58D
RGB: (172,197,141)
#ACC58D contains red, green and blue colors in about the same proportion. Web safe color of #ACC58D is #99CC99 (or #9C9).
#ACC58D color RGB value is (172,197,141).
RGB: (172,197,141) (67%,77%,55%)
R 172 of 255 = 67%
G 197 of 255 = 77%
B 141 of 255 = 55%
R + G + B ~ 66%. #ACC58D is quite light color.
R + G + B =
172 + 197 + 141 = 510 (100%)
R 172 of 510 ~ 33.73%
G 197 of 510 ~ 38.63%
B 141 of 510 ~ 27.65%
#ACC58D color CMYK value is (13,0,28,23).
CMYK: (13,0,28,23) C13M0Y28K23 (13%,0%,28%,23%) (0.13/0.00/0.28/0.23)
AC | C5 | 8D | |
---|---|---|---|
RGB | 172 | 197 | 141 |
HSL | 87° | 32.56% | 66.27% |
HSB/HSV | 87° | 28.43% | 77.25% |
CMYK | 12.69% | 0.00% | 28.43% |
22.75% |
HEX | AC | C5 | 8D |
Decimal | 172 | 197 | 141 |
Binary | 10101100 | 11000101 | 10001101 |
Octal | 254 | 305 | 215 |
Examples of css and html codes for elements with #ACC58D color. Also use rgb(172,197,141) instead hex code.
.myTextColor { color: #ACC58D; }
<p style="color:#ACC58D">This sample text font color is #ACC58D.</p>
This text font color is #ACC58D.
.myBgColor { background-color: #ACC58D; }
<div style="background-color:#ACC58D">Inner text</div>
This div background color is #ACC58D.
.myBorderColor { border: 1px solid #ACC58D; }
<div style="border:3px solid #ACC58D">Div</div>
This div border color is #ACC58D.
.myOpacity80 { color: #ACC58D; opacity: 0.8; }
<p style="color:#ACC58D;opacity:0.8;">80%</p>
Text with #ACC58D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACC58D;}
<p style="text-shadow: 3px 3px 1px #ACC58D">Text here.</p>
This text has shadow with #ACC58D color.
.textShadow {text-shadow: 3px 3px 1px #ACC58D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACC58D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACC58D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACC58D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACC58D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACC58D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACC58D; -webkit-box-shadow: 1px 1px 3px 2px #ACC58D; box-shadow: 1px 1px 3px 2px #ACC58D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACC58D; -webkit-box-shadow: 1px 1px 3px 2px #ACC58D; box-shadow:1px 1px 3px 2px #ACC58D;">
Div content here</div>
This text has color #ACC58D on black background.
This text has color #ACC58D on white background.
This text has black color on #ACC58D background.
This text has white color on #ACC58D background.