HEX: #ADD39C
RGB: (173,211,156)
#ADD39C contains red, green and blue colors in about the same proportion. Web safe color of #ADD39C is #99CC99 (or #9C9).
#ADD39C color RGB value is (173,211,156).
RGB: (173,211,156) (68%,83%,61%)
R 173 of 255 = 68%
G 211 of 255 = 83%
B 156 of 255 = 61%
R + G + B ~ 71%. #ADD39C is quite light color.
R + G + B =
173 + 211 + 156 = 540 (100%)
R 173 of 540 ~ 32.04%
G 211 of 540 ~ 39.07%
B 156 of 540 ~ 28.89%
#ADD39C color CMYK value is (18,0,26,17).
CMYK: (18,0,26,17) C18M0Y26K17 (18%,0%,26%,17%) (0.18/0.00/0.26/0.17)
AD | D3 | 9C | |
---|---|---|---|
RGB | 173 | 211 | 156 |
HSL | 101° | 38.46% | 71.96% |
HSB/HSV | 101° | 26.07% | 82.75% |
CMYK | 18.01% | 0.00% | 26.07% |
17.25% |
HEX | AD | D3 | 9C |
Decimal | 173 | 211 | 156 |
Binary | 10101101 | 11010011 | 10011100 |
Octal | 255 | 323 | 234 |
Examples of css and html codes for elements with #ADD39C color. Also use rgb(173,211,156) instead hex code.
.myTextColor { color: #ADD39C; }
<p style="color:#ADD39C">This sample text font color is #ADD39C.</p>
This text font color is #ADD39C.
.myBgColor { background-color: #ADD39C; }
<div style="background-color:#ADD39C">Inner text</div>
This div background color is #ADD39C.
.myBorderColor { border: 1px solid #ADD39C; }
<div style="border:3px solid #ADD39C">Div</div>
This div border color is #ADD39C.
.myOpacity80 { color: #ADD39C; opacity: 0.8; }
<p style="color:#ADD39C;opacity:0.8;">80%</p>
Text with #ADD39C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD39C;}
<p style="text-shadow: 3px 3px 1px #ADD39C">Text here.</p>
This text has shadow with #ADD39C color.
.textShadow {text-shadow: 3px 3px 1px #ADD39C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD39C, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD39C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD39C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD39C, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD39C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD39C; -webkit-box-shadow: 1px 1px 3px 2px #ADD39C; box-shadow: 1px 1px 3px 2px #ADD39C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD39C; -webkit-box-shadow: 1px 1px 3px 2px #ADD39C; box-shadow:1px 1px 3px 2px #ADD39C;">
Div content here</div>
This text has color #ADD39C on black background.
This text has color #ADD39C on white background.
This text has black color on #ADD39C background.
This text has white color on #ADD39C background.