HEX: #ADCD8E
RGB: (173,205,142)
#ADCD8E contains mainly red and green colors. Web safe color of #ADCD8E is #99CC99 (or #9C9).
#ADCD8E color RGB value is (173,205,142).
RGB: (173,205,142) (68%,80%,56%)
R 173 of 255 = 68%
G 205 of 255 = 80%
B 142 of 255 = 56%
R + G + B ~ 68%. #ADCD8E is quite light color.
R + G + B =
173 + 205 + 142 = 520 (100%)
R 173 of 520 ~ 33.27%
G 205 of 520 ~ 39.42%
B 142 of 520 ~ 27.31%
#ADCD8E color CMYK value is (16,0,31,20).
CMYK: (16,0,31,20) C16M0Y31K20 (16%,0%,31%,20%) (0.16/0.00/0.31/0.20)
AD | CD | 8E | |
---|---|---|---|
RGB | 173 | 205 | 142 |
HSL | 90° | 38.65% | 68.04% |
HSB/HSV | 90° | 30.73% | 80.39% |
CMYK | 15.61% | 0.00% | 30.73% |
19.61% |
HEX | AD | CD | 8E |
Decimal | 173 | 205 | 142 |
Binary | 10101101 | 11001101 | 10001110 |
Octal | 255 | 315 | 216 |
Examples of css and html codes for elements with #ADCD8E color. Also use rgb(173,205,142) instead hex code.
.myTextColor { color: #ADCD8E; }
<p style="color:#ADCD8E">This sample text font color is #ADCD8E.</p>
This text font color is #ADCD8E.
.myBgColor { background-color: #ADCD8E; }
<div style="background-color:#ADCD8E">Inner text</div>
This div background color is #ADCD8E.
.myBorderColor { border: 1px solid #ADCD8E; }
<div style="border:3px solid #ADCD8E">Div</div>
This div border color is #ADCD8E.
.myOpacity80 { color: #ADCD8E; opacity: 0.8; }
<p style="color:#ADCD8E;opacity:0.8;">80%</p>
Text with #ADCD8E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCD8E;}
<p style="text-shadow: 3px 3px 1px #ADCD8E">Text here.</p>
This text has shadow with #ADCD8E color.
.textShadow {text-shadow: 3px 3px 1px #ADCD8E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCD8E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCD8E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCD8E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCD8E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCD8E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCD8E; -webkit-box-shadow: 1px 1px 3px 2px #ADCD8E; box-shadow: 1px 1px 3px 2px #ADCD8E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCD8E; -webkit-box-shadow: 1px 1px 3px 2px #ADCD8E; box-shadow:1px 1px 3px 2px #ADCD8E;">
Div content here</div>
This text has color #ADCD8E on black background.
This text has color #ADCD8E on white background.
This text has black color on #ADCD8E background.
This text has white color on #ADCD8E background.