HEX: #ADC491
RGB: (173,196,145)
#ADC491 contains red, green and blue colors in about the same proportion. Web safe color of #ADC491 is #99CC99 (or #9C9).
#ADC491 color RGB value is (173,196,145).
RGB: (173,196,145) (68%,77%,57%)
R 173 of 255 = 68%
G 196 of 255 = 77%
B 145 of 255 = 57%
R + G + B ~ 67%. #ADC491 is quite light color.
R + G + B =
173 + 196 + 145 = 514 (100%)
R 173 of 514 ~ 33.66%
G 196 of 514 ~ 38.13%
B 145 of 514 ~ 28.21%
#ADC491 color CMYK value is (12,0,26,23).
CMYK: (12,0,26,23) C12M0Y26K23 (12%,0%,26%,23%) (0.12/0.00/0.26/0.23)
AD | C4 | 91 | |
---|---|---|---|
RGB | 173 | 196 | 145 |
HSL | 87° | 30.18% | 66.86% |
HSB/HSV | 87° | 26.02% | 76.86% |
CMYK | 11.73% | 0.00% | 26.02% |
23.14% |
HEX | AD | C4 | 91 |
Decimal | 173 | 196 | 145 |
Binary | 10101101 | 11000100 | 10010001 |
Octal | 255 | 304 | 221 |
Examples of css and html codes for elements with #ADC491 color. Also use rgb(173,196,145) instead hex code.
.myTextColor { color: #ADC491; }
<p style="color:#ADC491">This sample text font color is #ADC491.</p>
This text font color is #ADC491.
.myBgColor { background-color: #ADC491; }
<div style="background-color:#ADC491">Inner text</div>
This div background color is #ADC491.
.myBorderColor { border: 1px solid #ADC491; }
<div style="border:3px solid #ADC491">Div</div>
This div border color is #ADC491.
.myOpacity80 { color: #ADC491; opacity: 0.8; }
<p style="color:#ADC491;opacity:0.8;">80%</p>
Text with #ADC491 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC491;}
<p style="text-shadow: 3px 3px 1px #ADC491">Text here.</p>
This text has shadow with #ADC491 color.
.textShadow {text-shadow: 3px 3px 1px #ADC491, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC491, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC491 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC491, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC491, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC491 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC491; -webkit-box-shadow: 1px 1px 3px 2px #ADC491; box-shadow: 1px 1px 3px 2px #ADC491; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC491; -webkit-box-shadow: 1px 1px 3px 2px #ADC491; box-shadow:1px 1px 3px 2px #ADC491;">
Div content here</div>
This text has color #ADC491 on black background.
This text has color #ADC491 on white background.
This text has black color on #ADC491 background.
This text has white color on #ADC491 background.