HEX: #ADD788
RGB: (173,215,136)
#ADD788 contains mainly red and green colors. Web safe color of #ADD788 is #99CC99 (or #9C9).
#ADD788 color RGB value is (173,215,136).
RGB: (173,215,136) (68%,84%,53%)
R 173 of 255 = 68%
G 215 of 255 = 84%
B 136 of 255 = 53%
R + G + B ~ 68%. #ADD788 is quite light color.
R + G + B =
173 + 215 + 136 = 524 (100%)
R 173 of 524 ~ 33.02%
G 215 of 524 ~ 41.03%
B 136 of 524 ~ 25.95%
#ADD788 color CMYK value is (20,0,37,16).
CMYK: (20,0,37,16) C20M0Y37K16 (20%,0%,37%,16%) (0.20/0.00/0.37/0.16)
AD | D7 | 88 | |
---|---|---|---|
RGB | 173 | 215 | 136 |
HSL | 92° | 49.69% | 68.82% |
HSB/HSV | 92° | 36.74% | 84.31% |
CMYK | 19.53% | 0.00% | 36.74% |
15.69% |
HEX | AD | D7 | 88 |
Decimal | 173 | 215 | 136 |
Binary | 10101101 | 11010111 | 10001000 |
Octal | 255 | 327 | 210 |
Examples of css and html codes for elements with #ADD788 color. Also use rgb(173,215,136) instead hex code.
.myTextColor { color: #ADD788; }
<p style="color:#ADD788">This sample text font color is #ADD788.</p>
This text font color is #ADD788.
.myBgColor { background-color: #ADD788; }
<div style="background-color:#ADD788">Inner text</div>
This div background color is #ADD788.
.myBorderColor { border: 1px solid #ADD788; }
<div style="border:3px solid #ADD788">Div</div>
This div border color is #ADD788.
.myOpacity80 { color: #ADD788; opacity: 0.8; }
<p style="color:#ADD788;opacity:0.8;">80%</p>
Text with #ADD788 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD788;}
<p style="text-shadow: 3px 3px 1px #ADD788">Text here.</p>
This text has shadow with #ADD788 color.
.textShadow {text-shadow: 3px 3px 1px #ADD788, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD788, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD788 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD788, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD788, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD788 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD788; -webkit-box-shadow: 1px 1px 3px 2px #ADD788; box-shadow: 1px 1px 3px 2px #ADD788; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD788; -webkit-box-shadow: 1px 1px 3px 2px #ADD788; box-shadow:1px 1px 3px 2px #ADD788;">
Div content here</div>
This text has color #ADD788 on black background.
This text has color #ADD788 on white background.
This text has black color on #ADD788 background.
This text has white color on #ADD788 background.