HEX: #ADB49C
RGB: (173,180,156)
#ADB49C contains red, green and blue colors in about the same proportion. Web safe color of #ADB49C is #99CC99 (or #9C9).
#ADB49C color RGB value is (173,180,156).
RGB: (173,180,156) (68%,71%,61%)
R 173 of 255 = 68%
G 180 of 255 = 71%
B 156 of 255 = 61%
R + G + B ~ 67%. #ADB49C is quite light color.
R + G + B =
173 + 180 + 156 = 509 (100%)
R 173 of 509 ~ 33.99%
G 180 of 509 ~ 35.36%
B 156 of 509 ~ 30.65%
#ADB49C color CMYK value is (4,0,13,29).
CMYK: (4,0,13,29) C4M0Y13K29 (4%,0%,13%,29%) (0.04/0.00/0.13/0.29)
AD | B4 | 9C | |
---|---|---|---|
RGB | 173 | 180 | 156 |
HSL | 78° | 13.79% | 65.88% |
HSB/HSV | 78° | 13.33% | 70.59% |
CMYK | 3.89% | 0.00% | 13.33% |
29.41% |
HEX | AD | B4 | 9C |
Decimal | 173 | 180 | 156 |
Binary | 10101101 | 10110100 | 10011100 |
Octal | 255 | 264 | 234 |
Examples of css and html codes for elements with #ADB49C color. Also use rgb(173,180,156) instead hex code.
.myTextColor { color: #ADB49C; }
<p style="color:#ADB49C">This sample text font color is #ADB49C.</p>
This text font color is #ADB49C.
.myBgColor { background-color: #ADB49C; }
<div style="background-color:#ADB49C">Inner text</div>
This div background color is #ADB49C.
.myBorderColor { border: 1px solid #ADB49C; }
<div style="border:3px solid #ADB49C">Div</div>
This div border color is #ADB49C.
.myOpacity80 { color: #ADB49C; opacity: 0.8; }
<p style="color:#ADB49C;opacity:0.8;">80%</p>
Text with #ADB49C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB49C;}
<p style="text-shadow: 3px 3px 1px #ADB49C">Text here.</p>
This text has shadow with #ADB49C color.
.textShadow {text-shadow: 3px 3px 1px #ADB49C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB49C, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB49C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB49C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB49C, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB49C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB49C; -webkit-box-shadow: 1px 1px 3px 2px #ADB49C; box-shadow: 1px 1px 3px 2px #ADB49C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB49C; -webkit-box-shadow: 1px 1px 3px 2px #ADB49C; box-shadow:1px 1px 3px 2px #ADB49C;">
Div content here</div>
This text has color #ADB49C on black background.
This text has color #ADB49C on white background.
This text has black color on #ADB49C background.
This text has white color on #ADB49C background.