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