HEX: #ADD9BD
RGB: (173,217,189)
#ADD9BD contains red, green and blue colors in about the same proportion. Web safe color of #ADD9BD is #99CCCC (or #9CC).
#ADD9BD color RGB value is (173,217,189).
RGB: (173,217,189) (68%,85%,74%)
R 173 of 255 = 68%
G 217 of 255 = 85%
B 189 of 255 = 74%
R + G + B ~ 76%. #ADD9BD is quite light color.
R + G + B =
173 + 217 + 189 = 579 (100%)
R 173 of 579 ~ 29.88%
G 217 of 579 ~ 37.48%
B 189 of 579 ~ 32.64%
#ADD9BD color CMYK value is (20,0,13,15).
CMYK: (20,0,13,15) C20M0Y13K15 (20%,0%,13%,15%) (0.20/0.00/0.13/0.15)
AD | D9 | BD | |
---|---|---|---|
RGB | 173 | 217 | 189 |
HSL | 142° | 36.67% | 76.47% |
HSB/HSV | 142° | 20.28% | 85.10% |
CMYK | 20.28% | 0.00% | 12.90% |
14.90% |
HEX | AD | D9 | BD |
Decimal | 173 | 217 | 189 |
Binary | 10101101 | 11011001 | 10111101 |
Octal | 255 | 331 | 275 |
Examples of css and html codes for elements with #ADD9BD color. Also use rgb(173,217,189) instead hex code.
.myTextColor { color: #ADD9BD; }
<p style="color:#ADD9BD">This sample text font color is #ADD9BD.</p>
This text font color is #ADD9BD.
.myBgColor { background-color: #ADD9BD; }
<div style="background-color:#ADD9BD">Inner text</div>
This div background color is #ADD9BD.
.myBorderColor { border: 1px solid #ADD9BD; }
<div style="border:3px solid #ADD9BD">Div</div>
This div border color is #ADD9BD.
.myOpacity80 { color: #ADD9BD; opacity: 0.8; }
<p style="color:#ADD9BD;opacity:0.8;">80%</p>
Text with #ADD9BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD9BD;}
<p style="text-shadow: 3px 3px 1px #ADD9BD">Text here.</p>
This text has shadow with #ADD9BD color.
.textShadow {text-shadow: 3px 3px 1px #ADD9BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD9BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD9BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD9BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD9BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD9BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD9BD; -webkit-box-shadow: 1px 1px 3px 2px #ADD9BD; box-shadow: 1px 1px 3px 2px #ADD9BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD9BD; -webkit-box-shadow: 1px 1px 3px 2px #ADD9BD; box-shadow:1px 1px 3px 2px #ADD9BD;">
Div content here</div>
This text has color #ADD9BD on black background.
This text has color #ADD9BD on white background.
This text has black color on #ADD9BD background.
This text has white color on #ADD9BD background.