HEX: #ADC28D
RGB: (173,194,141)
#ADC28D contains red, green and blue colors in about the same proportion. Web safe color of #ADC28D is #99CC99 (or #9C9).
#ADC28D color RGB value is (173,194,141).
RGB: (173,194,141) (68%,76%,55%)
R 173 of 255 = 68%
G 194 of 255 = 76%
B 141 of 255 = 55%
R + G + B ~ 66%. #ADC28D is quite light color.
R + G + B =
173 + 194 + 141 = 508 (100%)
R 173 of 508 ~ 34.06%
G 194 of 508 ~ 38.19%
B 141 of 508 ~ 27.76%
#ADC28D color CMYK value is (11,0,27,24).
CMYK: (11,0,27,24) C11M0Y27K24 (11%,0%,27%,24%) (0.11/0.00/0.27/0.24)
AD | C2 | 8D | |
---|---|---|---|
RGB | 173 | 194 | 141 |
HSL | 84° | 30.29% | 65.69% |
HSB/HSV | 84° | 27.32% | 76.08% |
CMYK | 10.82% | 0.00% | 27.32% |
23.92% |
HEX | AD | C2 | 8D |
Decimal | 173 | 194 | 141 |
Binary | 10101101 | 11000010 | 10001101 |
Octal | 255 | 302 | 215 |
Examples of css and html codes for elements with #ADC28D color. Also use rgb(173,194,141) instead hex code.
.myTextColor { color: #ADC28D; }
<p style="color:#ADC28D">This sample text font color is #ADC28D.</p>
This text font color is #ADC28D.
.myBgColor { background-color: #ADC28D; }
<div style="background-color:#ADC28D">Inner text</div>
This div background color is #ADC28D.
.myBorderColor { border: 1px solid #ADC28D; }
<div style="border:3px solid #ADC28D">Div</div>
This div border color is #ADC28D.
.myOpacity80 { color: #ADC28D; opacity: 0.8; }
<p style="color:#ADC28D;opacity:0.8;">80%</p>
Text with #ADC28D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC28D;}
<p style="text-shadow: 3px 3px 1px #ADC28D">Text here.</p>
This text has shadow with #ADC28D color.
.textShadow {text-shadow: 3px 3px 1px #ADC28D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC28D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC28D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC28D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC28D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC28D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC28D; -webkit-box-shadow: 1px 1px 3px 2px #ADC28D; box-shadow: 1px 1px 3px 2px #ADC28D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC28D; -webkit-box-shadow: 1px 1px 3px 2px #ADC28D; box-shadow:1px 1px 3px 2px #ADC28D;">
Div content here</div>
This text has color #ADC28D on black background.
This text has color #ADC28D on white background.
This text has black color on #ADC28D background.
This text has white color on #ADC28D background.