HEX: #ADCB96
RGB: (173,203,150)
#ADCB96 contains red, green and blue colors in about the same proportion. Web safe color of #ADCB96 is #99CC99 (or #9C9).
#ADCB96 color RGB value is (173,203,150).
RGB: (173,203,150) (68%,80%,59%)
R 173 of 255 = 68%
G 203 of 255 = 80%
B 150 of 255 = 59%
R + G + B ~ 69%. #ADCB96 is quite light color.
R + G + B =
173 + 203 + 150 = 526 (100%)
R 173 of 526 ~ 32.89%
G 203 of 526 ~ 38.59%
B 150 of 526 ~ 28.52%
#ADCB96 color CMYK value is (15,0,26,20).
CMYK: (15,0,26,20) C15M0Y26K20 (15%,0%,26%,20%) (0.15/0.00/0.26/0.20)
AD | CB | 96 | |
---|---|---|---|
RGB | 173 | 203 | 150 |
HSL | 94° | 33.76% | 69.22% |
HSB/HSV | 94° | 26.11% | 79.61% |
CMYK | 14.78% | 0.00% | 26.11% |
20.39% |
HEX | AD | CB | 96 |
Decimal | 173 | 203 | 150 |
Binary | 10101101 | 11001011 | 10010110 |
Octal | 255 | 313 | 226 |
Examples of css and html codes for elements with #ADCB96 color. Also use rgb(173,203,150) instead hex code.
.myTextColor { color: #ADCB96; }
<p style="color:#ADCB96">This sample text font color is #ADCB96.</p>
This text font color is #ADCB96.
.myBgColor { background-color: #ADCB96; }
<div style="background-color:#ADCB96">Inner text</div>
This div background color is #ADCB96.
.myBorderColor { border: 1px solid #ADCB96; }
<div style="border:3px solid #ADCB96">Div</div>
This div border color is #ADCB96.
.myOpacity80 { color: #ADCB96; opacity: 0.8; }
<p style="color:#ADCB96;opacity:0.8;">80%</p>
Text with #ADCB96 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCB96;}
<p style="text-shadow: 3px 3px 1px #ADCB96">Text here.</p>
This text has shadow with #ADCB96 color.
.textShadow {text-shadow: 3px 3px 1px #ADCB96, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCB96, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCB96 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCB96, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCB96, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCB96 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCB96; -webkit-box-shadow: 1px 1px 3px 2px #ADCB96; box-shadow: 1px 1px 3px 2px #ADCB96; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCB96; -webkit-box-shadow: 1px 1px 3px 2px #ADCB96; box-shadow:1px 1px 3px 2px #ADCB96;">
Div content here</div>
This text has color #ADCB96 on black background.
This text has color #ADCB96 on white background.
This text has black color on #ADCB96 background.
This text has white color on #ADCB96 background.