HEX: #ABD7AC
RGB: (171,215,172)
#ABD7AC contains red, green and blue colors in about the same proportion. Web safe color of #ABD7AC is #99CC99 (or #9C9).
#ABD7AC color RGB value is (171,215,172).
RGB: (171,215,172) (67%,84%,67%)
R 171 of 255 = 67%
G 215 of 255 = 84%
B 172 of 255 = 67%
R + G + B ~ 73%. #ABD7AC is quite light color.
R + G + B =
171 + 215 + 172 = 558 (100%)
R 171 of 558 ~ 30.65%
G 215 of 558 ~ 38.53%
B 172 of 558 ~ 30.82%
#ABD7AC color CMYK value is (20,0,20,16).
CMYK: (20,0,20,16) C20M0Y20K16 (20%,0%,20%,16%) (0.20/0.00/0.20/0.16)
AB | D7 | AC | |
---|---|---|---|
RGB | 171 | 215 | 172 |
HSL | 121° | 35.48% | 75.69% |
HSB/HSV | 121° | 20.47% | 84.31% |
CMYK | 20.47% | 0.00% | 20.00% |
15.69% |
HEX | AB | D7 | AC |
Decimal | 171 | 215 | 172 |
Binary | 10101011 | 11010111 | 10101100 |
Octal | 253 | 327 | 254 |
Examples of css and html codes for elements with #ABD7AC color. Also use rgb(171,215,172) instead hex code.
.myTextColor { color: #ABD7AC; }
<p style="color:#ABD7AC">This sample text font color is #ABD7AC.</p>
This text font color is #ABD7AC.
.myBgColor { background-color: #ABD7AC; }
<div style="background-color:#ABD7AC">Inner text</div>
This div background color is #ABD7AC.
.myBorderColor { border: 1px solid #ABD7AC; }
<div style="border:3px solid #ABD7AC">Div</div>
This div border color is #ABD7AC.
.myOpacity80 { color: #ABD7AC; opacity: 0.8; }
<p style="color:#ABD7AC;opacity:0.8;">80%</p>
Text with #ABD7AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD7AC;}
<p style="text-shadow: 3px 3px 1px #ABD7AC">Text here.</p>
This text has shadow with #ABD7AC color.
.textShadow {text-shadow: 3px 3px 1px #ABD7AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD7AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD7AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD7AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD7AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD7AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD7AC; -webkit-box-shadow: 1px 1px 3px 2px #ABD7AC; box-shadow: 1px 1px 3px 2px #ABD7AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD7AC; -webkit-box-shadow: 1px 1px 3px 2px #ABD7AC; box-shadow:1px 1px 3px 2px #ABD7AC;">
Div content here</div>
This text has color #ABD7AC on black background.
This text has color #ABD7AC on white background.
This text has black color on #ABD7AC background.
This text has white color on #ABD7AC background.