HEX: #ADC589
RGB: (173,197,137)
#ADC589 contains mainly red and green colors. Web safe color of #ADC589 is #99CC99 (or #9C9).
#ADC589 color RGB value is (173,197,137).
RGB: (173,197,137) (68%,77%,54%)
R 173 of 255 = 68%
G 197 of 255 = 77%
B 137 of 255 = 54%
R + G + B ~ 66%. #ADC589 is quite light color.
R + G + B =
173 + 197 + 137 = 507 (100%)
R 173 of 507 ~ 34.12%
G 197 of 507 ~ 38.86%
B 137 of 507 ~ 27.02%
#ADC589 color CMYK value is (12,0,30,23).
CMYK: (12,0,30,23) C12M0Y30K23 (12%,0%,30%,23%) (0.12/0.00/0.30/0.23)
AD | C5 | 89 | |
---|---|---|---|
RGB | 173 | 197 | 137 |
HSL | 84° | 34.09% | 65.49% |
HSB/HSV | 84° | 30.46% | 77.25% |
CMYK | 12.18% | 0.00% | 30.46% |
22.75% |
HEX | AD | C5 | 89 |
Decimal | 173 | 197 | 137 |
Binary | 10101101 | 11000101 | 10001001 |
Octal | 255 | 305 | 211 |
Examples of css and html codes for elements with #ADC589 color. Also use rgb(173,197,137) instead hex code.
.myTextColor { color: #ADC589; }
<p style="color:#ADC589">This sample text font color is #ADC589.</p>
This text font color is #ADC589.
.myBgColor { background-color: #ADC589; }
<div style="background-color:#ADC589">Inner text</div>
This div background color is #ADC589.
.myBorderColor { border: 1px solid #ADC589; }
<div style="border:3px solid #ADC589">Div</div>
This div border color is #ADC589.
.myOpacity80 { color: #ADC589; opacity: 0.8; }
<p style="color:#ADC589;opacity:0.8;">80%</p>
Text with #ADC589 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC589;}
<p style="text-shadow: 3px 3px 1px #ADC589">Text here.</p>
This text has shadow with #ADC589 color.
.textShadow {text-shadow: 3px 3px 1px #ADC589, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC589, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC589 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC589, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC589, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC589 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC589; -webkit-box-shadow: 1px 1px 3px 2px #ADC589; box-shadow: 1px 1px 3px 2px #ADC589; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC589; -webkit-box-shadow: 1px 1px 3px 2px #ADC589; box-shadow:1px 1px 3px 2px #ADC589;">
Div content here</div>
This text has color #ADC589 on black background.
This text has color #ADC589 on white background.
This text has black color on #ADC589 background.
This text has white color on #ADC589 background.