HEX: #ADD08E
RGB: (173,208,142)
#ADD08E contains mainly red and green colors. Web safe color of #ADD08E is #99CC99 (or #9C9).
#ADD08E color RGB value is (173,208,142).
RGB: (173,208,142) (68%,82%,56%)
R 173 of 255 = 68%
G 208 of 255 = 82%
B 142 of 255 = 56%
R + G + B ~ 69%. #ADD08E is quite light color.
R + G + B =
173 + 208 + 142 = 523 (100%)
R 173 of 523 ~ 33.08%
G 208 of 523 ~ 39.77%
B 142 of 523 ~ 27.15%
#ADD08E color CMYK value is (17,0,32,18).
CMYK: (17,0,32,18) C17M0Y32K18 (17%,0%,32%,18%) (0.17/0.00/0.32/0.18)
AD | D0 | 8E | |
---|---|---|---|
RGB | 173 | 208 | 142 |
HSL | 92° | 41.25% | 68.63% |
HSB/HSV | 92° | 31.73% | 81.57% |
CMYK | 16.83% | 0.00% | 31.73% |
18.43% |
HEX | AD | D0 | 8E |
Decimal | 173 | 208 | 142 |
Binary | 10101101 | 11010000 | 10001110 |
Octal | 255 | 320 | 216 |
Examples of css and html codes for elements with #ADD08E color. Also use rgb(173,208,142) instead hex code.
.myTextColor { color: #ADD08E; }
<p style="color:#ADD08E">This sample text font color is #ADD08E.</p>
This text font color is #ADD08E.
.myBgColor { background-color: #ADD08E; }
<div style="background-color:#ADD08E">Inner text</div>
This div background color is #ADD08E.
.myBorderColor { border: 1px solid #ADD08E; }
<div style="border:3px solid #ADD08E">Div</div>
This div border color is #ADD08E.
.myOpacity80 { color: #ADD08E; opacity: 0.8; }
<p style="color:#ADD08E;opacity:0.8;">80%</p>
Text with #ADD08E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD08E;}
<p style="text-shadow: 3px 3px 1px #ADD08E">Text here.</p>
This text has shadow with #ADD08E color.
.textShadow {text-shadow: 3px 3px 1px #ADD08E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD08E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD08E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD08E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD08E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD08E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD08E; -webkit-box-shadow: 1px 1px 3px 2px #ADD08E; box-shadow: 1px 1px 3px 2px #ADD08E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD08E; -webkit-box-shadow: 1px 1px 3px 2px #ADD08E; box-shadow:1px 1px 3px 2px #ADD08E;">
Div content here</div>
This text has color #ADD08E on black background.
This text has color #ADD08E on white background.
This text has black color on #ADD08E background.
This text has white color on #ADD08E background.