HEX: #ADDF9E
RGB: (173,223,158)
#ADDF9E contains mainly red and green colors. Web safe color of #ADDF9E is #99CC99 (or #9C9).
#ADDF9E color RGB value is (173,223,158).
RGB: (173,223,158) (68%,87%,62%)
R 173 of 255 = 68%
G 223 of 255 = 87%
B 158 of 255 = 62%
R + G + B ~ 72%. #ADDF9E is quite light color.
R + G + B =
173 + 223 + 158 = 554 (100%)
R 173 of 554 ~ 31.23%
G 223 of 554 ~ 40.25%
B 158 of 554 ~ 28.52%
#ADDF9E color CMYK value is (22,0,29,13).
CMYK: (22,0,29,13) C22M0Y29K13 (22%,0%,29%,13%) (0.22/0.00/0.29/0.13)
AD | DF | 9E | |
---|---|---|---|
RGB | 173 | 223 | 158 |
HSL | 106° | 50.39% | 74.71% |
HSB/HSV | 106° | 29.15% | 87.45% |
CMYK | 22.42% | 0.00% | 29.15% |
12.55% |
HEX | AD | DF | 9E |
Decimal | 173 | 223 | 158 |
Binary | 10101101 | 11011111 | 10011110 |
Octal | 255 | 337 | 236 |
Examples of css and html codes for elements with #ADDF9E color. Also use rgb(173,223,158) instead hex code.
.myTextColor { color: #ADDF9E; }
<p style="color:#ADDF9E">This sample text font color is #ADDF9E.</p>
This text font color is #ADDF9E.
.myBgColor { background-color: #ADDF9E; }
<div style="background-color:#ADDF9E">Inner text</div>
This div background color is #ADDF9E.
.myBorderColor { border: 1px solid #ADDF9E; }
<div style="border:3px solid #ADDF9E">Div</div>
This div border color is #ADDF9E.
.myOpacity80 { color: #ADDF9E; opacity: 0.8; }
<p style="color:#ADDF9E;opacity:0.8;">80%</p>
Text with #ADDF9E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADDF9E;}
<p style="text-shadow: 3px 3px 1px #ADDF9E">Text here.</p>
This text has shadow with #ADDF9E color.
.textShadow {text-shadow: 3px 3px 1px #ADDF9E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADDF9E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADDF9E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADDF9E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADDF9E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADDF9E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADDF9E; -webkit-box-shadow: 1px 1px 3px 2px #ADDF9E; box-shadow: 1px 1px 3px 2px #ADDF9E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADDF9E; -webkit-box-shadow: 1px 1px 3px 2px #ADDF9E; box-shadow:1px 1px 3px 2px #ADDF9E;">
Div content here</div>
This text has color #ADDF9E on black background.
This text has color #ADDF9E on white background.
This text has black color on #ADDF9E background.
This text has white color on #ADDF9E background.