HEX: #ACE5B6
RGB: (172,229,182)
#ACE5B6 contains red, green and blue colors in about the same proportion. Web safe color of #ACE5B6 is #99CCCC (or #9CC).
#ACE5B6 color RGB value is (172,229,182).
RGB: (172,229,182) (67%,90%,71%)
R 172 of 255 = 67%
G 229 of 255 = 90%
B 182 of 255 = 71%
R + G + B ~ 76%. #ACE5B6 is quite light color.
R + G + B =
172 + 229 + 182 = 583 (100%)
R 172 of 583 ~ 29.5%
G 229 of 583 ~ 39.28%
B 182 of 583 ~ 31.22%
#ACE5B6 color CMYK value is (25,0,21,10).
CMYK: (25,0,21,10) C25M0Y21K10 (25%,0%,21%,10%) (0.25/0.00/0.21/0.10)
AC | E5 | B6 | |
---|---|---|---|
RGB | 172 | 229 | 182 |
HSL | 131° | 52.29% | 78.63% |
HSB/HSV | 131° | 24.89% | 89.80% |
CMYK | 24.89% | 0.00% | 20.52% |
10.20% |
HEX | AC | E5 | B6 |
Decimal | 172 | 229 | 182 |
Binary | 10101100 | 11100101 | 10110110 |
Octal | 254 | 345 | 266 |
Examples of css and html codes for elements with #ACE5B6 color. Also use rgb(172,229,182) instead hex code.
.myTextColor { color: #ACE5B6; }
<p style="color:#ACE5B6">This sample text font color is #ACE5B6.</p>
This text font color is #ACE5B6.
.myBgColor { background-color: #ACE5B6; }
<div style="background-color:#ACE5B6">Inner text</div>
This div background color is #ACE5B6.
.myBorderColor { border: 1px solid #ACE5B6; }
<div style="border:3px solid #ACE5B6">Div</div>
This div border color is #ACE5B6.
.myOpacity80 { color: #ACE5B6; opacity: 0.8; }
<p style="color:#ACE5B6;opacity:0.8;">80%</p>
Text with #ACE5B6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACE5B6;}
<p style="text-shadow: 3px 3px 1px #ACE5B6">Text here.</p>
This text has shadow with #ACE5B6 color.
.textShadow {text-shadow: 3px 3px 1px #ACE5B6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACE5B6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACE5B6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACE5B6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACE5B6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACE5B6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACE5B6; -webkit-box-shadow: 1px 1px 3px 2px #ACE5B6; box-shadow: 1px 1px 3px 2px #ACE5B6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACE5B6; -webkit-box-shadow: 1px 1px 3px 2px #ACE5B6; box-shadow:1px 1px 3px 2px #ACE5B6;">
Div content here</div>
This text has color #ACE5B6 on black background.
This text has color #ACE5B6 on white background.
This text has black color on #ACE5B6 background.
This text has white color on #ACE5B6 background.