HEX: #ACE960
RGB: (172,233,96)
#ACE960 contains mainly green color. Web safe color of #ACE960 is #99FF66 (or #9F6).
#ACE960 color RGB value is (172,233,96).
RGB: (172,233,96) (67%,91%,38%)
R 172 of 255 = 67%
G 233 of 255 = 91%
B 96 of 255 = 38%
R + G + B ~ 65%. #ACE960 is quite light color.
R + G + B =
172 + 233 + 96 = 501 (100%)
R 172 of 501 ~ 34.33%
G 233 of 501 ~ 46.51%
B 96 of 501 ~ 19.16%
#ACE960 color CMYK value is (26,0,59,9).
CMYK: (26,0,59,9) C26M0Y59K9 (26%,0%,59%,9%) (0.26/0.00/0.59/0.09)
AC | E9 | 60 | |
---|---|---|---|
RGB | 172 | 233 | 96 |
HSL | 87° | 75.69% | 64.51% |
HSB/HSV | 87° | 58.80% | 91.37% |
CMYK | 26.18% | 0.00% | 58.80% |
8.63% |
HEX | AC | E9 | 60 |
Decimal | 172 | 233 | 96 |
Binary | 10101100 | 11101001 | 1100000 |
Octal | 254 | 351 | 140 |
Examples of css and html codes for elements with #ACE960 color. Also use rgb(172,233,96) instead hex code.
.myTextColor { color: #ACE960; }
<p style="color:#ACE960">This sample text font color is #ACE960.</p>
This text font color is #ACE960.
.myBgColor { background-color: #ACE960; }
<div style="background-color:#ACE960">Inner text</div>
This div background color is #ACE960.
.myBorderColor { border: 1px solid #ACE960; }
<div style="border:3px solid #ACE960">Div</div>
This div border color is #ACE960.
.myOpacity80 { color: #ACE960; opacity: 0.8; }
<p style="color:#ACE960;opacity:0.8;">80%</p>
Text with #ACE960 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACE960;}
<p style="text-shadow: 3px 3px 1px #ACE960">Text here.</p>
This text has shadow with #ACE960 color.
.textShadow {text-shadow: 3px 3px 1px #ACE960, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACE960, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACE960 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACE960, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACE960, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACE960 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACE960; -webkit-box-shadow: 1px 1px 3px 2px #ACE960; box-shadow: 1px 1px 3px 2px #ACE960; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACE960; -webkit-box-shadow: 1px 1px 3px 2px #ACE960; box-shadow:1px 1px 3px 2px #ACE960;">
Div content here</div>
This text has color #ACE960 on black background.
This text has color #ACE960 on white background.
This text has black color on #ACE960 background.
This text has white color on #ACE960 background.