HEX: #ACD9AD
RGB: (172,217,173)
#ACD9AD contains red, green and blue colors in about the same proportion. Web safe color of #ACD9AD is #99CC99 (or #9C9).
#ACD9AD color RGB value is (172,217,173).
RGB: (172,217,173) (67%,85%,68%)
R 172 of 255 = 67%
G 217 of 255 = 85%
B 173 of 255 = 68%
R + G + B ~ 73%. #ACD9AD is quite light color.
R + G + B =
172 + 217 + 173 = 562 (100%)
R 172 of 562 ~ 30.6%
G 217 of 562 ~ 38.61%
B 173 of 562 ~ 30.78%
#ACD9AD color CMYK value is (21,0,20,15).
CMYK: (21,0,20,15) C21M0Y20K15 (21%,0%,20%,15%) (0.21/0.00/0.20/0.15)
AC | D9 | AD | |
---|---|---|---|
RGB | 172 | 217 | 173 |
HSL | 121° | 37.19% | 76.27% |
HSB/HSV | 121° | 20.74% | 85.10% |
CMYK | 20.74% | 0.00% | 20.28% |
14.90% |
HEX | AC | D9 | AD |
Decimal | 172 | 217 | 173 |
Binary | 10101100 | 11011001 | 10101101 |
Octal | 254 | 331 | 255 |
Examples of css and html codes for elements with #ACD9AD color. Also use rgb(172,217,173) instead hex code.
.myTextColor { color: #ACD9AD; }
<p style="color:#ACD9AD">This sample text font color is #ACD9AD.</p>
This text font color is #ACD9AD.
.myBgColor { background-color: #ACD9AD; }
<div style="background-color:#ACD9AD">Inner text</div>
This div background color is #ACD9AD.
.myBorderColor { border: 1px solid #ACD9AD; }
<div style="border:3px solid #ACD9AD">Div</div>
This div border color is #ACD9AD.
.myOpacity80 { color: #ACD9AD; opacity: 0.8; }
<p style="color:#ACD9AD;opacity:0.8;">80%</p>
Text with #ACD9AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACD9AD;}
<p style="text-shadow: 3px 3px 1px #ACD9AD">Text here.</p>
This text has shadow with #ACD9AD color.
.textShadow {text-shadow: 3px 3px 1px #ACD9AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACD9AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACD9AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACD9AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACD9AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACD9AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACD9AD; -webkit-box-shadow: 1px 1px 3px 2px #ACD9AD; box-shadow: 1px 1px 3px 2px #ACD9AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACD9AD; -webkit-box-shadow: 1px 1px 3px 2px #ACD9AD; box-shadow:1px 1px 3px 2px #ACD9AD;">
Div content here</div>
This text has color #ACD9AD on black background.
This text has color #ACD9AD on white background.
This text has black color on #ACD9AD background.
This text has white color on #ACD9AD background.