HEX: #AD896D
RGB: (173,137,109)
#AD896D contains mainly red and green colors. Web safe color of #AD896D is #999966 (or #996).
#AD896D color RGB value is (173,137,109).
RGB: (173,137,109) (68%,54%,43%)
R 173 of 255 = 68%
G 137 of 255 = 54%
B 109 of 255 = 43%
R + G + B ~ 55%. #AD896D is middle color (not dark and not light).
R + G + B =
173 + 137 + 109 = 419 (100%)
R 173 of 419 ~ 41.29%
G 137 of 419 ~ 32.7%
B 109 of 419 ~ 26.01%
#AD896D color CMYK value is (0,21,37,32).
CMYK: (0,21,37,32) C0M21Y37K32 (0%,21%,37%,32%) (0.00/0.21/0.37/0.32)
AD | 89 | 6D | |
---|---|---|---|
RGB | 173 | 137 | 109 |
HSL | 26° | 28.07% | 55.29% |
HSB/HSV | 26° | 36.99% | 67.84% |
CMYK | 0.00% | 20.81% | 36.99% |
32.16% |
HEX | AD | 89 | 6D |
Decimal | 173 | 137 | 109 |
Binary | 10101101 | 10001001 | 1101101 |
Octal | 255 | 211 | 155 |
Examples of css and html codes for elements with #AD896D color. Also use rgb(173,137,109) instead hex code.
.myTextColor { color: #AD896D; }
<p style="color:#AD896D">This sample text font color is #AD896D.</p>
This text font color is #AD896D.
.myBgColor { background-color: #AD896D; }
<div style="background-color:#AD896D">Inner text</div>
This div background color is #AD896D.
.myBorderColor { border: 1px solid #AD896D; }
<div style="border:3px solid #AD896D">Div</div>
This div border color is #AD896D.
.myOpacity80 { color: #AD896D; opacity: 0.8; }
<p style="color:#AD896D;opacity:0.8;">80%</p>
Text with #AD896D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD896D;}
<p style="text-shadow: 3px 3px 1px #AD896D">Text here.</p>
This text has shadow with #AD896D color.
.textShadow {text-shadow: 3px 3px 1px #AD896D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD896D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD896D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD896D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD896D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD896D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD896D; -webkit-box-shadow: 1px 1px 3px 2px #AD896D; box-shadow: 1px 1px 3px 2px #AD896D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD896D; -webkit-box-shadow: 1px 1px 3px 2px #AD896D; box-shadow:1px 1px 3px 2px #AD896D;">
Div content here</div>
This text has color #AD896D on black background.
This text has color #AD896D on white background.
This text has black color on #AD896D background.
This text has white color on #AD896D background.