HEX: #ADC05C
RGB: (173,192,92)
#ADC05C contains mainly red and green colors. Web safe color of #ADC05C is #99CC66 (or #9C6).
#ADC05C color RGB value is (173,192,92).
RGB: (173,192,92) (68%,75%,36%)
R 173 of 255 = 68%
G 192 of 255 = 75%
B 92 of 255 = 36%
R + G + B ~ 60%. #ADC05C is middle color (not dark and not light).
R + G + B =
173 + 192 + 92 = 457 (100%)
R 173 of 457 ~ 37.86%
G 192 of 457 ~ 42.01%
B 92 of 457 ~ 20.13%
#ADC05C color CMYK value is (10,0,52,25).
CMYK: (10,0,52,25) C10M0Y52K25 (10%,0%,52%,25%) (0.10/0.00/0.52/0.25)
AD | C0 | 5C | |
---|---|---|---|
RGB | 173 | 192 | 92 |
HSL | 71° | 44.25% | 55.69% |
HSB/HSV | 71° | 52.08% | 75.29% |
CMYK | 9.90% | 0.00% | 52.08% |
24.71% |
HEX | AD | C0 | 5C |
Decimal | 173 | 192 | 92 |
Binary | 10101101 | 11000000 | 1011100 |
Octal | 255 | 300 | 134 |
Examples of css and html codes for elements with #ADC05C color. Also use rgb(173,192,92) instead hex code.
.myTextColor { color: #ADC05C; }
<p style="color:#ADC05C">This sample text font color is #ADC05C.</p>
This text font color is #ADC05C.
.myBgColor { background-color: #ADC05C; }
<div style="background-color:#ADC05C">Inner text</div>
This div background color is #ADC05C.
.myBorderColor { border: 1px solid #ADC05C; }
<div style="border:3px solid #ADC05C">Div</div>
This div border color is #ADC05C.
.myOpacity80 { color: #ADC05C; opacity: 0.8; }
<p style="color:#ADC05C;opacity:0.8;">80%</p>
Text with #ADC05C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC05C;}
<p style="text-shadow: 3px 3px 1px #ADC05C">Text here.</p>
This text has shadow with #ADC05C color.
.textShadow {text-shadow: 3px 3px 1px #ADC05C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC05C, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC05C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC05C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC05C, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC05C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC05C; -webkit-box-shadow: 1px 1px 3px 2px #ADC05C; box-shadow: 1px 1px 3px 2px #ADC05C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC05C; -webkit-box-shadow: 1px 1px 3px 2px #ADC05C; box-shadow:1px 1px 3px 2px #ADC05C;">
Div content here</div>
This text has color #ADC05C on black background.
This text has color #ADC05C on white background.
This text has black color on #ADC05C background.
This text has white color on #ADC05C background.