HEX: #ADD495
RGB: (173,212,149)
#ADD495 contains mainly red and green colors. Web safe color of #ADD495 is #99CC99 (or #9C9).
#ADD495 color RGB value is (173,212,149).
RGB: (173,212,149) (68%,83%,58%)
R 173 of 255 = 68%
G 212 of 255 = 83%
B 149 of 255 = 58%
R + G + B ~ 70%. #ADD495 is quite light color.
R + G + B =
173 + 212 + 149 = 534 (100%)
R 173 of 534 ~ 32.4%
G 212 of 534 ~ 39.7%
B 149 of 534 ~ 27.9%
#ADD495 color CMYK value is (18,0,30,17).
CMYK: (18,0,30,17) C18M0Y30K17 (18%,0%,30%,17%) (0.18/0.00/0.30/0.17)
AD | D4 | 95 | |
---|---|---|---|
RGB | 173 | 212 | 149 |
HSL | 97° | 42.28% | 70.78% |
HSB/HSV | 97° | 29.72% | 83.14% |
CMYK | 18.40% | 0.00% | 29.72% |
16.86% |
HEX | AD | D4 | 95 |
Decimal | 173 | 212 | 149 |
Binary | 10101101 | 11010100 | 10010101 |
Octal | 255 | 324 | 225 |
Examples of css and html codes for elements with #ADD495 color. Also use rgb(173,212,149) instead hex code.
.myTextColor { color: #ADD495; }
<p style="color:#ADD495">This sample text font color is #ADD495.</p>
This text font color is #ADD495.
.myBgColor { background-color: #ADD495; }
<div style="background-color:#ADD495">Inner text</div>
This div background color is #ADD495.
.myBorderColor { border: 1px solid #ADD495; }
<div style="border:3px solid #ADD495">Div</div>
This div border color is #ADD495.
.myOpacity80 { color: #ADD495; opacity: 0.8; }
<p style="color:#ADD495;opacity:0.8;">80%</p>
Text with #ADD495 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD495;}
<p style="text-shadow: 3px 3px 1px #ADD495">Text here.</p>
This text has shadow with #ADD495 color.
.textShadow {text-shadow: 3px 3px 1px #ADD495, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD495, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD495 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD495, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD495, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD495 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD495; -webkit-box-shadow: 1px 1px 3px 2px #ADD495; box-shadow: 1px 1px 3px 2px #ADD495; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD495; -webkit-box-shadow: 1px 1px 3px 2px #ADD495; box-shadow:1px 1px 3px 2px #ADD495;">
Div content here</div>
This text has color #ADD495 on black background.
This text has color #ADD495 on white background.
This text has black color on #ADD495 background.
This text has white color on #ADD495 background.