HEX: #AD743D
RGB: (173,116,61)
#AD743D contains mainly red and green colors. Web safe color of #AD743D is #996633 (or #963).
#AD743D color RGB value is (173,116,61).
RGB: (173,116,61) (68%,45%,24%)
R 173 of 255 = 68%
G 116 of 255 = 45%
B 61 of 255 = 24%
R + G + B ~ 46%. #AD743D is middle color (not dark and not light).
R + G + B =
173 + 116 + 61 = 350 (100%)
R 173 of 350 ~ 49.43%
G 116 of 350 ~ 33.14%
B 61 of 350 ~ 17.43%
#AD743D color CMYK value is (0,33,65,32).
CMYK: (0,33,65,32) C0M33Y65K32 (0%,33%,65%,32%) (0.00/0.33/0.65/0.32)
AD | 74 | 3D | |
---|---|---|---|
RGB | 173 | 116 | 61 |
HSL | 29° | 47.86% | 45.88% |
HSB/HSV | 29° | 64.74% | 67.84% |
CMYK | 0.00% | 32.95% | 64.74% |
32.16% |
HEX | AD | 74 | 3D |
Decimal | 173 | 116 | 61 |
Binary | 10101101 | 1110100 | 111101 |
Octal | 255 | 164 | 75 |
Examples of css and html codes for elements with #AD743D color. Also use rgb(173,116,61) instead hex code.
.myTextColor { color: #AD743D; }
<p style="color:#AD743D">This sample text font color is #AD743D.</p>
This text font color is #AD743D.
.myBgColor { background-color: #AD743D; }
<div style="background-color:#AD743D">Inner text</div>
This div background color is #AD743D.
.myBorderColor { border: 1px solid #AD743D; }
<div style="border:3px solid #AD743D">Div</div>
This div border color is #AD743D.
.myOpacity80 { color: #AD743D; opacity: 0.8; }
<p style="color:#AD743D;opacity:0.8;">80%</p>
Text with #AD743D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD743D;}
<p style="text-shadow: 3px 3px 1px #AD743D">Text here.</p>
This text has shadow with #AD743D color.
.textShadow {text-shadow: 3px 3px 1px #AD743D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD743D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD743D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD743D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD743D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD743D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD743D; -webkit-box-shadow: 1px 1px 3px 2px #AD743D; box-shadow: 1px 1px 3px 2px #AD743D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD743D; -webkit-box-shadow: 1px 1px 3px 2px #AD743D; box-shadow:1px 1px 3px 2px #AD743D;">
Div content here</div>
This text has color #AD743D on black background.
This text has color #AD743D on white background.
This text has black color on #AD743D background.
This text has white color on #AD743D background.