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