HEX: #ACEDC0
RGB: (172,237,192)
#ACEDC0 contains mainly green and blue colors. Web safe color of #ACEDC0 is #99FFCC (or #9FC).
#ACEDC0 color RGB value is (172,237,192).
RGB: (172,237,192) (67%,93%,75%)
R 172 of 255 = 67%
G 237 of 255 = 93%
B 192 of 255 = 75%
R + G + B ~ 78%. #ACEDC0 is quite light color.
R + G + B =
172 + 237 + 192 = 601 (100%)
R 172 of 601 ~ 28.62%
G 237 of 601 ~ 39.43%
B 192 of 601 ~ 31.95%
#ACEDC0 color CMYK value is (27,0,19,7).
CMYK: (27,0,19,7) C27M0Y19K7 (27%,0%,19%,7%) (0.27/0.00/0.19/0.07)
AC | ED | C0 | |
---|---|---|---|
RGB | 172 | 237 | 192 |
HSL | 138° | 64.36% | 80.20% |
HSB/HSV | 138° | 27.43% | 92.94% |
CMYK | 27.43% | 0.00% | 18.99% |
7.06% |
HEX | AC | ED | C0 |
Decimal | 172 | 237 | 192 |
Binary | 10101100 | 11101101 | 11000000 |
Octal | 254 | 355 | 300 |
Examples of css and html codes for elements with #ACEDC0 color. Also use rgb(172,237,192) instead hex code.
.myTextColor { color: #ACEDC0; }
<p style="color:#ACEDC0">This sample text font color is #ACEDC0.</p>
This text font color is #ACEDC0.
.myBgColor { background-color: #ACEDC0; }
<div style="background-color:#ACEDC0">Inner text</div>
This div background color is #ACEDC0.
.myBorderColor { border: 1px solid #ACEDC0; }
<div style="border:3px solid #ACEDC0">Div</div>
This div border color is #ACEDC0.
.myOpacity80 { color: #ACEDC0; opacity: 0.8; }
<p style="color:#ACEDC0;opacity:0.8;">80%</p>
Text with #ACEDC0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACEDC0;}
<p style="text-shadow: 3px 3px 1px #ACEDC0">Text here.</p>
This text has shadow with #ACEDC0 color.
.textShadow {text-shadow: 3px 3px 1px #ACEDC0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACEDC0, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACEDC0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACEDC0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACEDC0, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACEDC0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACEDC0; -webkit-box-shadow: 1px 1px 3px 2px #ACEDC0; box-shadow: 1px 1px 3px 2px #ACEDC0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACEDC0; -webkit-box-shadow: 1px 1px 3px 2px #ACEDC0; box-shadow:1px 1px 3px 2px #ACEDC0;">
Div content here</div>
This text has color #ACEDC0 on black background.
This text has color #ACEDC0 on white background.
This text has black color on #ACEDC0 background.
This text has white color on #ACEDC0 background.