HEX: #ADC1AD
RGB: (173,193,173)
#ADC1AD contains red, green and blue colors in about the same proportion. Web safe color of #ADC1AD is #99CC99 (or #9C9).
#ADC1AD color RGB value is (173,193,173).
RGB: (173,193,173) (68%,76%,68%)
R 173 of 255 = 68%
G 193 of 255 = 76%
B 173 of 255 = 68%
R + G + B ~ 71%. #ADC1AD is quite light color.
R + G + B =
173 + 193 + 173 = 539 (100%)
R 173 of 539 ~ 32.1%
G 193 of 539 ~ 35.81%
B 173 of 539 ~ 32.1%
#ADC1AD color CMYK value is (10,0,10,24).
CMYK: (10,0,10,24) C10M0Y10K24 (10%,0%,10%,24%) (0.10/0.00/0.10/0.24)
AD | C1 | AD | |
---|---|---|---|
RGB | 173 | 193 | 173 |
HSL | 120° | 13.89% | 71.76% |
HSB/HSV | 120° | 10.36% | 75.69% |
CMYK | 10.36% | 0.00% | 10.36% |
24.31% |
HEX | AD | C1 | AD |
Decimal | 173 | 193 | 173 |
Binary | 10101101 | 11000001 | 10101101 |
Octal | 255 | 301 | 255 |
Examples of css and html codes for elements with #ADC1AD color. Also use rgb(173,193,173) instead hex code.
.myTextColor { color: #ADC1AD; }
<p style="color:#ADC1AD">This sample text font color is #ADC1AD.</p>
This text font color is #ADC1AD.
.myBgColor { background-color: #ADC1AD; }
<div style="background-color:#ADC1AD">Inner text</div>
This div background color is #ADC1AD.
.myBorderColor { border: 1px solid #ADC1AD; }
<div style="border:3px solid #ADC1AD">Div</div>
This div border color is #ADC1AD.
.myOpacity80 { color: #ADC1AD; opacity: 0.8; }
<p style="color:#ADC1AD;opacity:0.8;">80%</p>
Text with #ADC1AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC1AD;}
<p style="text-shadow: 3px 3px 1px #ADC1AD">Text here.</p>
This text has shadow with #ADC1AD color.
.textShadow {text-shadow: 3px 3px 1px #ADC1AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC1AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC1AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC1AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC1AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC1AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC1AD; -webkit-box-shadow: 1px 1px 3px 2px #ADC1AD; box-shadow: 1px 1px 3px 2px #ADC1AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC1AD; -webkit-box-shadow: 1px 1px 3px 2px #ADC1AD; box-shadow:1px 1px 3px 2px #ADC1AD;">
Div content here</div>
This text has color #ADC1AD on black background.
This text has color #ADC1AD on white background.
This text has black color on #ADC1AD background.
This text has white color on #ADC1AD background.