HEX: #ABD6AE
RGB: (171,214,174)
#ABD6AE contains red, green and blue colors in about the same proportion. Web safe color of #ABD6AE is #99CC99 (or #9C9).
#ABD6AE color RGB value is (171,214,174).
RGB: (171,214,174) (67%,84%,68%)
R 171 of 255 = 67%
G 214 of 255 = 84%
B 174 of 255 = 68%
R + G + B ~ 73%. #ABD6AE is quite light color.
R + G + B =
171 + 214 + 174 = 559 (100%)
R 171 of 559 ~ 30.59%
G 214 of 559 ~ 38.28%
B 174 of 559 ~ 31.13%
#ABD6AE color CMYK value is (20,0,19,16).
CMYK: (20,0,19,16) C20M0Y19K16 (20%,0%,19%,16%) (0.20/0.00/0.19/0.16)
AB | D6 | AE | |
---|---|---|---|
RGB | 171 | 214 | 174 |
HSL | 124° | 34.40% | 75.49% |
HSB/HSV | 124° | 20.09% | 83.92% |
CMYK | 20.09% | 0.00% | 18.69% |
16.08% |
HEX | AB | D6 | AE |
Decimal | 171 | 214 | 174 |
Binary | 10101011 | 11010110 | 10101110 |
Octal | 253 | 326 | 256 |
Examples of css and html codes for elements with #ABD6AE color. Also use rgb(171,214,174) instead hex code.
.myTextColor { color: #ABD6AE; }
<p style="color:#ABD6AE">This sample text font color is #ABD6AE.</p>
This text font color is #ABD6AE.
.myBgColor { background-color: #ABD6AE; }
<div style="background-color:#ABD6AE">Inner text</div>
This div background color is #ABD6AE.
.myBorderColor { border: 1px solid #ABD6AE; }
<div style="border:3px solid #ABD6AE">Div</div>
This div border color is #ABD6AE.
.myOpacity80 { color: #ABD6AE; opacity: 0.8; }
<p style="color:#ABD6AE;opacity:0.8;">80%</p>
Text with #ABD6AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD6AE;}
<p style="text-shadow: 3px 3px 1px #ABD6AE">Text here.</p>
This text has shadow with #ABD6AE color.
.textShadow {text-shadow: 3px 3px 1px #ABD6AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD6AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD6AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD6AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD6AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD6AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD6AE; -webkit-box-shadow: 1px 1px 3px 2px #ABD6AE; box-shadow: 1px 1px 3px 2px #ABD6AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD6AE; -webkit-box-shadow: 1px 1px 3px 2px #ABD6AE; box-shadow:1px 1px 3px 2px #ABD6AE;">
Div content here</div>
This text has color #ABD6AE on black background.
This text has color #ABD6AE on white background.
This text has black color on #ABD6AE background.
This text has white color on #ABD6AE background.