HEX: #ADC398
RGB: (173,195,152)
#ADC398 contains red, green and blue colors in about the same proportion. Web safe color of #ADC398 is #99CC99 (or #9C9).
#ADC398 color RGB value is (173,195,152).
RGB: (173,195,152) (68%,76%,60%)
R 173 of 255 = 68%
G 195 of 255 = 76%
B 152 of 255 = 60%
R + G + B ~ 68%. #ADC398 is quite light color.
R + G + B =
173 + 195 + 152 = 520 (100%)
R 173 of 520 ~ 33.27%
G 195 of 520 ~ 37.5%
B 152 of 520 ~ 29.23%
#ADC398 color CMYK value is (11,0,22,24).
CMYK: (11,0,22,24) C11M0Y22K24 (11%,0%,22%,24%) (0.11/0.00/0.22/0.24)
AD | C3 | 98 | |
---|---|---|---|
RGB | 173 | 195 | 152 |
HSL | 91° | 26.38% | 68.04% |
HSB/HSV | 91° | 22.05% | 76.47% |
CMYK | 11.28% | 0.00% | 22.05% |
23.53% |
HEX | AD | C3 | 98 |
Decimal | 173 | 195 | 152 |
Binary | 10101101 | 11000011 | 10011000 |
Octal | 255 | 303 | 230 |
Examples of css and html codes for elements with #ADC398 color. Also use rgb(173,195,152) instead hex code.
.myTextColor { color: #ADC398; }
<p style="color:#ADC398">This sample text font color is #ADC398.</p>
This text font color is #ADC398.
.myBgColor { background-color: #ADC398; }
<div style="background-color:#ADC398">Inner text</div>
This div background color is #ADC398.
.myBorderColor { border: 1px solid #ADC398; }
<div style="border:3px solid #ADC398">Div</div>
This div border color is #ADC398.
.myOpacity80 { color: #ADC398; opacity: 0.8; }
<p style="color:#ADC398;opacity:0.8;">80%</p>
Text with #ADC398 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC398;}
<p style="text-shadow: 3px 3px 1px #ADC398">Text here.</p>
This text has shadow with #ADC398 color.
.textShadow {text-shadow: 3px 3px 1px #ADC398, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC398, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC398 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC398, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC398, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC398 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC398; -webkit-box-shadow: 1px 1px 3px 2px #ADC398; box-shadow: 1px 1px 3px 2px #ADC398; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC398; -webkit-box-shadow: 1px 1px 3px 2px #ADC398; box-shadow:1px 1px 3px 2px #ADC398;">
Div content here</div>
This text has color #ADC398 on black background.
This text has color #ADC398 on white background.
This text has black color on #ADC398 background.
This text has white color on #ADC398 background.