HEX: #ACD760
RGB: (172,215,96)
#ACD760 contains mainly red and green colors. Web safe color of #ACD760 is #99CC66 (or #9C6).
#ACD760 color RGB value is (172,215,96).
RGB: (172,215,96) (67%,84%,38%)
R 172 of 255 = 67%
G 215 of 255 = 84%
B 96 of 255 = 38%
R + G + B ~ 63%. #ACD760 is quite light color.
R + G + B =
172 + 215 + 96 = 483 (100%)
R 172 of 483 ~ 35.61%
G 215 of 483 ~ 44.51%
B 96 of 483 ~ 19.88%
#ACD760 color CMYK value is (20,0,55,16).
CMYK: (20,0,55,16) C20M0Y55K16 (20%,0%,55%,16%) (0.20/0.00/0.55/0.16)
AC | D7 | 60 | |
---|---|---|---|
RGB | 172 | 215 | 96 |
HSL | 82° | 59.80% | 60.98% |
HSB/HSV | 82° | 55.35% | 84.31% |
CMYK | 20.00% | 0.00% | 55.35% |
15.69% |
HEX | AC | D7 | 60 |
Decimal | 172 | 215 | 96 |
Binary | 10101100 | 11010111 | 1100000 |
Octal | 254 | 327 | 140 |
Examples of css and html codes for elements with #ACD760 color. Also use rgb(172,215,96) instead hex code.
.myTextColor { color: #ACD760; }
<p style="color:#ACD760">This sample text font color is #ACD760.</p>
This text font color is #ACD760.
.myBgColor { background-color: #ACD760; }
<div style="background-color:#ACD760">Inner text</div>
This div background color is #ACD760.
.myBorderColor { border: 1px solid #ACD760; }
<div style="border:3px solid #ACD760">Div</div>
This div border color is #ACD760.
.myOpacity80 { color: #ACD760; opacity: 0.8; }
<p style="color:#ACD760;opacity:0.8;">80%</p>
Text with #ACD760 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACD760;}
<p style="text-shadow: 3px 3px 1px #ACD760">Text here.</p>
This text has shadow with #ACD760 color.
.textShadow {text-shadow: 3px 3px 1px #ACD760, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACD760, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACD760 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACD760, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACD760, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACD760 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACD760; -webkit-box-shadow: 1px 1px 3px 2px #ACD760; box-shadow: 1px 1px 3px 2px #ACD760; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACD760; -webkit-box-shadow: 1px 1px 3px 2px #ACD760; box-shadow:1px 1px 3px 2px #ACD760;">
Div content here</div>
This text has color #ACD760 on black background.
This text has color #ACD760 on white background.
This text has black color on #ACD760 background.
This text has white color on #ACD760 background.