HEX: #AD844B
RGB: (173,132,75)
#AD844B contains mainly red and green colors. Web safe color of #AD844B is #999933 (or #993).
#AD844B color RGB value is (173,132,75).
RGB: (173,132,75) (68%,52%,29%)
R 173 of 255 = 68%
G 132 of 255 = 52%
B 75 of 255 = 29%
R + G + B ~ 50%. #AD844B is middle color (not dark and not light).
R + G + B =
173 + 132 + 75 = 380 (100%)
R 173 of 380 ~ 45.53%
G 132 of 380 ~ 34.74%
B 75 of 380 ~ 19.74%
#AD844B color CMYK value is (0,24,57,32).
CMYK: (0,24,57,32) C0M24Y57K32 (0%,24%,57%,32%) (0.00/0.24/0.57/0.32)
AD | 84 | 4B | |
---|---|---|---|
RGB | 173 | 132 | 75 |
HSL | 35° | 39.52% | 48.63% |
HSB/HSV | 35° | 56.65% | 67.84% |
CMYK | 0.00% | 23.70% | 56.65% |
32.16% |
HEX | AD | 84 | 4B |
Decimal | 173 | 132 | 75 |
Binary | 10101101 | 10000100 | 1001011 |
Octal | 255 | 204 | 113 |
Examples of css and html codes for elements with #AD844B color. Also use rgb(173,132,75) instead hex code.
.myTextColor { color: #AD844B; }
<p style="color:#AD844B">This sample text font color is #AD844B.</p>
This text font color is #AD844B.
.myBgColor { background-color: #AD844B; }
<div style="background-color:#AD844B">Inner text</div>
This div background color is #AD844B.
.myBorderColor { border: 1px solid #AD844B; }
<div style="border:3px solid #AD844B">Div</div>
This div border color is #AD844B.
.myOpacity80 { color: #AD844B; opacity: 0.8; }
<p style="color:#AD844B;opacity:0.8;">80%</p>
Text with #AD844B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD844B;}
<p style="text-shadow: 3px 3px 1px #AD844B">Text here.</p>
This text has shadow with #AD844B color.
.textShadow {text-shadow: 3px 3px 1px #AD844B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD844B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD844B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD844B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD844B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD844B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD844B; -webkit-box-shadow: 1px 1px 3px 2px #AD844B; box-shadow: 1px 1px 3px 2px #AD844B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD844B; -webkit-box-shadow: 1px 1px 3px 2px #AD844B; box-shadow:1px 1px 3px 2px #AD844B;">
Div content here</div>
This text has color #AD844B on black background.
This text has color #AD844B on white background.
This text has black color on #AD844B background.
This text has white color on #AD844B background.