HEX: #ACE289
RGB: (172,226,137)
#ACE289 contains mainly red and green colors. Web safe color of #ACE289 is #99CC99 (or #9C9).
#ACE289 color RGB value is (172,226,137).
RGB: (172,226,137) (67%,89%,54%)
R 172 of 255 = 67%
G 226 of 255 = 89%
B 137 of 255 = 54%
R + G + B ~ 70%. #ACE289 is quite light color.
R + G + B =
172 + 226 + 137 = 535 (100%)
R 172 of 535 ~ 32.15%
G 226 of 535 ~ 42.24%
B 137 of 535 ~ 25.61%
#ACE289 color CMYK value is (24,0,39,11).
CMYK: (24,0,39,11) C24M0Y39K11 (24%,0%,39%,11%) (0.24/0.00/0.39/0.11)
AC | E2 | 89 | |
---|---|---|---|
RGB | 172 | 226 | 137 |
HSL | 96° | 60.54% | 71.18% |
HSB/HSV | 96° | 39.38% | 88.63% |
CMYK | 23.89% | 0.00% | 39.38% |
11.37% |
HEX | AC | E2 | 89 |
Decimal | 172 | 226 | 137 |
Binary | 10101100 | 11100010 | 10001001 |
Octal | 254 | 342 | 211 |
Examples of css and html codes for elements with #ACE289 color. Also use rgb(172,226,137) instead hex code.
.myTextColor { color: #ACE289; }
<p style="color:#ACE289">This sample text font color is #ACE289.</p>
This text font color is #ACE289.
.myBgColor { background-color: #ACE289; }
<div style="background-color:#ACE289">Inner text</div>
This div background color is #ACE289.
.myBorderColor { border: 1px solid #ACE289; }
<div style="border:3px solid #ACE289">Div</div>
This div border color is #ACE289.
.myOpacity80 { color: #ACE289; opacity: 0.8; }
<p style="color:#ACE289;opacity:0.8;">80%</p>
Text with #ACE289 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACE289;}
<p style="text-shadow: 3px 3px 1px #ACE289">Text here.</p>
This text has shadow with #ACE289 color.
.textShadow {text-shadow: 3px 3px 1px #ACE289, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACE289, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACE289 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACE289, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACE289, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACE289 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACE289; -webkit-box-shadow: 1px 1px 3px 2px #ACE289; box-shadow: 1px 1px 3px 2px #ACE289; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACE289; -webkit-box-shadow: 1px 1px 3px 2px #ACE289; box-shadow:1px 1px 3px 2px #ACE289;">
Div content here</div>
This text has color #ACE289 on black background.
This text has color #ACE289 on white background.
This text has black color on #ACE289 background.
This text has white color on #ACE289 background.