HEX: #ABD973
RGB: (171,217,115)
#ABD973 contains mainly red and green colors. Web safe color of #ABD973 is #99CC66 (or #9C6).
#ABD973 color RGB value is (171,217,115).
RGB: (171,217,115) (67%,85%,45%)
R 171 of 255 = 67%
G 217 of 255 = 85%
B 115 of 255 = 45%
R + G + B ~ 66%. #ABD973 is quite light color.
R + G + B =
171 + 217 + 115 = 503 (100%)
R 171 of 503 ~ 34%
G 217 of 503 ~ 43.14%
B 115 of 503 ~ 22.86%
#ABD973 color CMYK value is (21,0,47,15).
CMYK: (21,0,47,15) C21M0Y47K15 (21%,0%,47%,15%) (0.21/0.00/0.47/0.15)
AB | D9 | 73 | |
---|---|---|---|
RGB | 171 | 217 | 115 |
HSL | 87° | 57.30% | 65.10% |
HSB/HSV | 87° | 47.00% | 85.10% |
CMYK | 21.20% | 0.00% | 47.00% |
14.90% |
HEX | AB | D9 | 73 |
Decimal | 171 | 217 | 115 |
Binary | 10101011 | 11011001 | 1110011 |
Octal | 253 | 331 | 163 |
Examples of css and html codes for elements with #ABD973 color. Also use rgb(171,217,115) instead hex code.
.myTextColor { color: #ABD973; }
<p style="color:#ABD973">This sample text font color is #ABD973.</p>
This text font color is #ABD973.
.myBgColor { background-color: #ABD973; }
<div style="background-color:#ABD973">Inner text</div>
This div background color is #ABD973.
.myBorderColor { border: 1px solid #ABD973; }
<div style="border:3px solid #ABD973">Div</div>
This div border color is #ABD973.
.myOpacity80 { color: #ABD973; opacity: 0.8; }
<p style="color:#ABD973;opacity:0.8;">80%</p>
Text with #ABD973 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD973;}
<p style="text-shadow: 3px 3px 1px #ABD973">Text here.</p>
This text has shadow with #ABD973 color.
.textShadow {text-shadow: 3px 3px 1px #ABD973, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD973, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD973 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD973, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD973, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD973 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD973; -webkit-box-shadow: 1px 1px 3px 2px #ABD973; box-shadow: 1px 1px 3px 2px #ABD973; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD973; -webkit-box-shadow: 1px 1px 3px 2px #ABD973; box-shadow:1px 1px 3px 2px #ABD973;">
Div content here</div>
This text has color #ABD973 on black background.
This text has color #ABD973 on white background.
This text has black color on #ABD973 background.
This text has white color on #ABD973 background.