HEX: #ADD47B
RGB: (173,212,123)
#ADD47B contains mainly red and green colors. Web safe color of #ADD47B is #99CC66 (or #9C6).
#ADD47B color RGB value is (173,212,123).
RGB: (173,212,123) (68%,83%,48%)
R 173 of 255 = 68%
G 212 of 255 = 83%
B 123 of 255 = 48%
R + G + B ~ 66%. #ADD47B is quite light color.
R + G + B =
173 + 212 + 123 = 508 (100%)
R 173 of 508 ~ 34.06%
G 212 of 508 ~ 41.73%
B 123 of 508 ~ 24.21%
#ADD47B color CMYK value is (18,0,42,17).
CMYK: (18,0,42,17) C18M0Y42K17 (18%,0%,42%,17%) (0.18/0.00/0.42/0.17)
AD | D4 | 7B | |
---|---|---|---|
RGB | 173 | 212 | 123 |
HSL | 86° | 50.86% | 65.69% |
HSB/HSV | 86° | 41.98% | 83.14% |
CMYK | 18.40% | 0.00% | 41.98% |
16.86% |
HEX | AD | D4 | 7B |
Decimal | 173 | 212 | 123 |
Binary | 10101101 | 11010100 | 1111011 |
Octal | 255 | 324 | 173 |
Examples of css and html codes for elements with #ADD47B color. Also use rgb(173,212,123) instead hex code.
.myTextColor { color: #ADD47B; }
<p style="color:#ADD47B">This sample text font color is #ADD47B.</p>
This text font color is #ADD47B.
.myBgColor { background-color: #ADD47B; }
<div style="background-color:#ADD47B">Inner text</div>
This div background color is #ADD47B.
.myBorderColor { border: 1px solid #ADD47B; }
<div style="border:3px solid #ADD47B">Div</div>
This div border color is #ADD47B.
.myOpacity80 { color: #ADD47B; opacity: 0.8; }
<p style="color:#ADD47B;opacity:0.8;">80%</p>
Text with #ADD47B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD47B;}
<p style="text-shadow: 3px 3px 1px #ADD47B">Text here.</p>
This text has shadow with #ADD47B color.
.textShadow {text-shadow: 3px 3px 1px #ADD47B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD47B, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD47B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD47B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD47B, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD47B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD47B; -webkit-box-shadow: 1px 1px 3px 2px #ADD47B; box-shadow: 1px 1px 3px 2px #ADD47B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD47B; -webkit-box-shadow: 1px 1px 3px 2px #ADD47B; box-shadow:1px 1px 3px 2px #ADD47B;">
Div content here</div>
This text has color #ADD47B on black background.
This text has color #ADD47B on white background.
This text has black color on #ADD47B background.
This text has white color on #ADD47B background.