HEX: #ADD66A
RGB: (173,214,106)
#ADD66A contains mainly red and green colors. Web safe color of #ADD66A is #99CC66 (or #9C6).
#ADD66A color RGB value is (173,214,106).
RGB: (173,214,106) (68%,84%,42%)
R 173 of 255 = 68%
G 214 of 255 = 84%
B 106 of 255 = 42%
R + G + B ~ 65%. #ADD66A is quite light color.
R + G + B =
173 + 214 + 106 = 493 (100%)
R 173 of 493 ~ 35.09%
G 214 of 493 ~ 43.41%
B 106 of 493 ~ 21.5%
#ADD66A color CMYK value is (19,0,50,16).
CMYK: (19,0,50,16) C19M0Y50K16 (19%,0%,50%,16%) (0.19/0.00/0.50/0.16)
AD | D6 | 6A | |
---|---|---|---|
RGB | 173 | 214 | 106 |
HSL | 83° | 56.84% | 62.75% |
HSB/HSV | 83° | 50.47% | 83.92% |
CMYK | 19.16% | 0.00% | 50.47% |
16.08% |
HEX | AD | D6 | 6A |
Decimal | 173 | 214 | 106 |
Binary | 10101101 | 11010110 | 1101010 |
Octal | 255 | 326 | 152 |
Examples of css and html codes for elements with #ADD66A color. Also use rgb(173,214,106) instead hex code.
.myTextColor { color: #ADD66A; }
<p style="color:#ADD66A">This sample text font color is #ADD66A.</p>
This text font color is #ADD66A.
.myBgColor { background-color: #ADD66A; }
<div style="background-color:#ADD66A">Inner text</div>
This div background color is #ADD66A.
.myBorderColor { border: 1px solid #ADD66A; }
<div style="border:3px solid #ADD66A">Div</div>
This div border color is #ADD66A.
.myOpacity80 { color: #ADD66A; opacity: 0.8; }
<p style="color:#ADD66A;opacity:0.8;">80%</p>
Text with #ADD66A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD66A;}
<p style="text-shadow: 3px 3px 1px #ADD66A">Text here.</p>
This text has shadow with #ADD66A color.
.textShadow {text-shadow: 3px 3px 1px #ADD66A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD66A, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD66A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD66A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD66A, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD66A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD66A; -webkit-box-shadow: 1px 1px 3px 2px #ADD66A; box-shadow: 1px 1px 3px 2px #ADD66A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD66A; -webkit-box-shadow: 1px 1px 3px 2px #ADD66A; box-shadow:1px 1px 3px 2px #ADD66A;">
Div content here</div>
This text has color #ADD66A on black background.
This text has color #ADD66A on white background.
This text has black color on #ADD66A background.
This text has white color on #ADD66A background.