HEX: #ADD2AE
RGB: (173,210,174)
#ADD2AE contains red, green and blue colors in about the same proportion. Web safe color of #ADD2AE is #99CC99 (or #9C9).
#ADD2AE color RGB value is (173,210,174).
RGB: (173,210,174) (68%,82%,68%)
R 173 of 255 = 68%
G 210 of 255 = 82%
B 174 of 255 = 68%
R + G + B ~ 73%. #ADD2AE is quite light color.
R + G + B =
173 + 210 + 174 = 557 (100%)
R 173 of 557 ~ 31.06%
G 210 of 557 ~ 37.7%
B 174 of 557 ~ 31.24%
#ADD2AE color CMYK value is (18,0,17,18).
CMYK: (18,0,17,18) C18M0Y17K18 (18%,0%,17%,18%) (0.18/0.00/0.17/0.18)
AD | D2 | AE | |
---|---|---|---|
RGB | 173 | 210 | 174 |
HSL | 122° | 29.13% | 75.10% |
HSB/HSV | 122° | 17.62% | 82.35% |
CMYK | 17.62% | 0.00% | 17.14% |
17.65% |
HEX | AD | D2 | AE |
Decimal | 173 | 210 | 174 |
Binary | 10101101 | 11010010 | 10101110 |
Octal | 255 | 322 | 256 |
Examples of css and html codes for elements with #ADD2AE color. Also use rgb(173,210,174) instead hex code.
.myTextColor { color: #ADD2AE; }
<p style="color:#ADD2AE">This sample text font color is #ADD2AE.</p>
This text font color is #ADD2AE.
.myBgColor { background-color: #ADD2AE; }
<div style="background-color:#ADD2AE">Inner text</div>
This div background color is #ADD2AE.
.myBorderColor { border: 1px solid #ADD2AE; }
<div style="border:3px solid #ADD2AE">Div</div>
This div border color is #ADD2AE.
.myOpacity80 { color: #ADD2AE; opacity: 0.8; }
<p style="color:#ADD2AE;opacity:0.8;">80%</p>
Text with #ADD2AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD2AE;}
<p style="text-shadow: 3px 3px 1px #ADD2AE">Text here.</p>
This text has shadow with #ADD2AE color.
.textShadow {text-shadow: 3px 3px 1px #ADD2AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD2AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD2AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD2AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD2AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD2AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD2AE; -webkit-box-shadow: 1px 1px 3px 2px #ADD2AE; box-shadow: 1px 1px 3px 2px #ADD2AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD2AE; -webkit-box-shadow: 1px 1px 3px 2px #ADD2AE; box-shadow:1px 1px 3px 2px #ADD2AE;">
Div content here</div>
This text has color #ADD2AE on black background.
This text has color #ADD2AE on white background.
This text has black color on #ADD2AE background.
This text has white color on #ADD2AE background.