HEX: #ACD37C
RGB: (172,211,124)
#ACD37C contains mainly red and green colors. Web safe color of #ACD37C is #99CC66 (or #9C6).
#ACD37C color RGB value is (172,211,124).
RGB: (172,211,124) (67%,83%,49%)
R 172 of 255 = 67%
G 211 of 255 = 83%
B 124 of 255 = 49%
R + G + B ~ 66%. #ACD37C is quite light color.
R + G + B =
172 + 211 + 124 = 507 (100%)
R 172 of 507 ~ 33.93%
G 211 of 507 ~ 41.62%
B 124 of 507 ~ 24.46%
#ACD37C color CMYK value is (18,0,41,17).
CMYK: (18,0,41,17) C18M0Y41K17 (18%,0%,41%,17%) (0.18/0.00/0.41/0.17)
AC | D3 | 7C | |
---|---|---|---|
RGB | 172 | 211 | 124 |
HSL | 87° | 49.71% | 65.69% |
HSB/HSV | 87° | 41.23% | 82.75% |
CMYK | 18.48% | 0.00% | 41.23% |
17.25% |
HEX | AC | D3 | 7C |
Decimal | 172 | 211 | 124 |
Binary | 10101100 | 11010011 | 1111100 |
Octal | 254 | 323 | 174 |
Examples of css and html codes for elements with #ACD37C color. Also use rgb(172,211,124) instead hex code.
.myTextColor { color: #ACD37C; }
<p style="color:#ACD37C">This sample text font color is #ACD37C.</p>
This text font color is #ACD37C.
.myBgColor { background-color: #ACD37C; }
<div style="background-color:#ACD37C">Inner text</div>
This div background color is #ACD37C.
.myBorderColor { border: 1px solid #ACD37C; }
<div style="border:3px solid #ACD37C">Div</div>
This div border color is #ACD37C.
.myOpacity80 { color: #ACD37C; opacity: 0.8; }
<p style="color:#ACD37C;opacity:0.8;">80%</p>
Text with #ACD37C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACD37C;}
<p style="text-shadow: 3px 3px 1px #ACD37C">Text here.</p>
This text has shadow with #ACD37C color.
.textShadow {text-shadow: 3px 3px 1px #ACD37C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACD37C, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACD37C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACD37C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACD37C, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACD37C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACD37C; -webkit-box-shadow: 1px 1px 3px 2px #ACD37C; box-shadow: 1px 1px 3px 2px #ACD37C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACD37C; -webkit-box-shadow: 1px 1px 3px 2px #ACD37C; box-shadow:1px 1px 3px 2px #ACD37C;">
Div content here</div>
This text has color #ACD37C on black background.
This text has color #ACD37C on white background.
This text has black color on #ACD37C background.
This text has white color on #ACD37C background.