HEX: #ADD097
RGB: (173,208,151)
#ADD097 contains red, green and blue colors in about the same proportion. Web safe color of #ADD097 is #99CC99 (or #9C9).
#ADD097 color RGB value is (173,208,151).
RGB: (173,208,151) (68%,82%,59%)
R 173 of 255 = 68%
G 208 of 255 = 82%
B 151 of 255 = 59%
R + G + B ~ 70%. #ADD097 is quite light color.
R + G + B =
173 + 208 + 151 = 532 (100%)
R 173 of 532 ~ 32.52%
G 208 of 532 ~ 39.1%
B 151 of 532 ~ 28.38%
#ADD097 color CMYK value is (17,0,27,18).
CMYK: (17,0,27,18) C17M0Y27K18 (17%,0%,27%,18%) (0.17/0.00/0.27/0.18)
AD | D0 | 97 | |
---|---|---|---|
RGB | 173 | 208 | 151 |
HSL | 97° | 37.75% | 70.39% |
HSB/HSV | 97° | 27.40% | 81.57% |
CMYK | 16.83% | 0.00% | 27.40% |
18.43% |
HEX | AD | D0 | 97 |
Decimal | 173 | 208 | 151 |
Binary | 10101101 | 11010000 | 10010111 |
Octal | 255 | 320 | 227 |
Examples of css and html codes for elements with #ADD097 color. Also use rgb(173,208,151) instead hex code.
.myTextColor { color: #ADD097; }
<p style="color:#ADD097">This sample text font color is #ADD097.</p>
This text font color is #ADD097.
.myBgColor { background-color: #ADD097; }
<div style="background-color:#ADD097">Inner text</div>
This div background color is #ADD097.
.myBorderColor { border: 1px solid #ADD097; }
<div style="border:3px solid #ADD097">Div</div>
This div border color is #ADD097.
.myOpacity80 { color: #ADD097; opacity: 0.8; }
<p style="color:#ADD097;opacity:0.8;">80%</p>
Text with #ADD097 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD097;}
<p style="text-shadow: 3px 3px 1px #ADD097">Text here.</p>
This text has shadow with #ADD097 color.
.textShadow {text-shadow: 3px 3px 1px #ADD097, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD097, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD097 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD097, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD097, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD097 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD097; -webkit-box-shadow: 1px 1px 3px 2px #ADD097; box-shadow: 1px 1px 3px 2px #ADD097; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD097; -webkit-box-shadow: 1px 1px 3px 2px #ADD097; box-shadow:1px 1px 3px 2px #ADD097;">
Div content here</div>
This text has color #ADD097 on black background.
This text has color #ADD097 on white background.
This text has black color on #ADD097 background.
This text has white color on #ADD097 background.