HEX: #ADD28F
RGB: (173,210,143)
#ADD28F contains mainly red and green colors. Web safe color of #ADD28F is #99CC99 (or #9C9).
#ADD28F color RGB value is (173,210,143).
RGB: (173,210,143) (68%,82%,56%)
R 173 of 255 = 68%
G 210 of 255 = 82%
B 143 of 255 = 56%
R + G + B ~ 69%. #ADD28F is quite light color.
R + G + B =
173 + 210 + 143 = 526 (100%)
R 173 of 526 ~ 32.89%
G 210 of 526 ~ 39.92%
B 143 of 526 ~ 27.19%
#ADD28F color CMYK value is (18,0,32,18).
CMYK: (18,0,32,18) C18M0Y32K18 (18%,0%,32%,18%) (0.18/0.00/0.32/0.18)
AD | D2 | 8F | |
---|---|---|---|
RGB | 173 | 210 | 143 |
HSL | 93° | 42.68% | 69.22% |
HSB/HSV | 93° | 31.90% | 82.35% |
CMYK | 17.62% | 0.00% | 31.90% |
17.65% |
HEX | AD | D2 | 8F |
Decimal | 173 | 210 | 143 |
Binary | 10101101 | 11010010 | 10001111 |
Octal | 255 | 322 | 217 |
Examples of css and html codes for elements with #ADD28F color. Also use rgb(173,210,143) instead hex code.
.myTextColor { color: #ADD28F; }
<p style="color:#ADD28F">This sample text font color is #ADD28F.</p>
This text font color is #ADD28F.
.myBgColor { background-color: #ADD28F; }
<div style="background-color:#ADD28F">Inner text</div>
This div background color is #ADD28F.
.myBorderColor { border: 1px solid #ADD28F; }
<div style="border:3px solid #ADD28F">Div</div>
This div border color is #ADD28F.
.myOpacity80 { color: #ADD28F; opacity: 0.8; }
<p style="color:#ADD28F;opacity:0.8;">80%</p>
Text with #ADD28F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD28F;}
<p style="text-shadow: 3px 3px 1px #ADD28F">Text here.</p>
This text has shadow with #ADD28F color.
.textShadow {text-shadow: 3px 3px 1px #ADD28F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD28F, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD28F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD28F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD28F, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD28F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD28F; -webkit-box-shadow: 1px 1px 3px 2px #ADD28F; box-shadow: 1px 1px 3px 2px #ADD28F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD28F; -webkit-box-shadow: 1px 1px 3px 2px #ADD28F; box-shadow:1px 1px 3px 2px #ADD28F;">
Div content here</div>
This text has color #ADD28F on black background.
This text has color #ADD28F on white background.
This text has black color on #ADD28F background.
This text has white color on #ADD28F background.