HEX: #ADE6AA
RGB: (173,230,170)
#ADE6AA contains mainly red and green colors. Web safe color of #ADE6AA is #99CC99 (or #9C9).
#ADE6AA color RGB value is (173,230,170).
RGB: (173,230,170) (68%,90%,67%)
R 173 of 255 = 68%
G 230 of 255 = 90%
B 170 of 255 = 67%
R + G + B ~ 75%. #ADE6AA is quite light color.
R + G + B =
173 + 230 + 170 = 573 (100%)
R 173 of 573 ~ 30.19%
G 230 of 573 ~ 40.14%
B 170 of 573 ~ 29.67%
#ADE6AA color CMYK value is (25,0,26,10).
CMYK: (25,0,26,10) C25M0Y26K10 (25%,0%,26%,10%) (0.25/0.00/0.26/0.10)
AD | E6 | AA | |
---|---|---|---|
RGB | 173 | 230 | 170 |
HSL | 117° | 54.55% | 78.43% |
HSB/HSV | 117° | 26.09% | 90.20% |
CMYK | 24.78% | 0.00% | 26.09% |
9.80% |
HEX | AD | E6 | AA |
Decimal | 173 | 230 | 170 |
Binary | 10101101 | 11100110 | 10101010 |
Octal | 255 | 346 | 252 |
Examples of css and html codes for elements with #ADE6AA color. Also use rgb(173,230,170) instead hex code.
.myTextColor { color: #ADE6AA; }
<p style="color:#ADE6AA">This sample text font color is #ADE6AA.</p>
This text font color is #ADE6AA.
.myBgColor { background-color: #ADE6AA; }
<div style="background-color:#ADE6AA">Inner text</div>
This div background color is #ADE6AA.
.myBorderColor { border: 1px solid #ADE6AA; }
<div style="border:3px solid #ADE6AA">Div</div>
This div border color is #ADE6AA.
.myOpacity80 { color: #ADE6AA; opacity: 0.8; }
<p style="color:#ADE6AA;opacity:0.8;">80%</p>
Text with #ADE6AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADE6AA;}
<p style="text-shadow: 3px 3px 1px #ADE6AA">Text here.</p>
This text has shadow with #ADE6AA color.
.textShadow {text-shadow: 3px 3px 1px #ADE6AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADE6AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADE6AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADE6AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADE6AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADE6AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADE6AA; -webkit-box-shadow: 1px 1px 3px 2px #ADE6AA; box-shadow: 1px 1px 3px 2px #ADE6AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADE6AA; -webkit-box-shadow: 1px 1px 3px 2px #ADE6AA; box-shadow:1px 1px 3px 2px #ADE6AA;">
Div content here</div>
This text has color #ADE6AA on black background.
This text has color #ADE6AA on white background.
This text has black color on #ADE6AA background.
This text has white color on #ADE6AA background.