HEX: #AD7D37
RGB: (173,125,55)
#AD7D37 contains mainly red and green colors. Web safe color of #AD7D37 is #996633 (or #963).
#AD7D37 color RGB value is (173,125,55).
RGB: (173,125,55) (68%,49%,22%)
R 173 of 255 = 68%
G 125 of 255 = 49%
B 55 of 255 = 22%
R + G + B ~ 46%. #AD7D37 is middle color (not dark and not light).
R + G + B =
173 + 125 + 55 = 353 (100%)
R 173 of 353 ~ 49.01%
G 125 of 353 ~ 35.41%
B 55 of 353 ~ 15.58%
#AD7D37 color CMYK value is (0,28,68,32).
CMYK: (0,28,68,32) C0M28Y68K32 (0%,28%,68%,32%) (0.00/0.28/0.68/0.32)
AD | 7D | 37 | |
---|---|---|---|
RGB | 173 | 125 | 55 |
HSL | 36° | 51.75% | 44.71% |
HSB/HSV | 36° | 68.21% | 67.84% |
CMYK | 0.00% | 27.75% | 68.21% |
32.16% |
HEX | AD | 7D | 37 |
Decimal | 173 | 125 | 55 |
Binary | 10101101 | 1111101 | 110111 |
Octal | 255 | 175 | 67 |
Examples of css and html codes for elements with #AD7D37 color. Also use rgb(173,125,55) instead hex code.
.myTextColor { color: #AD7D37; }
<p style="color:#AD7D37">This sample text font color is #AD7D37.</p>
This text font color is #AD7D37.
.myBgColor { background-color: #AD7D37; }
<div style="background-color:#AD7D37">Inner text</div>
This div background color is #AD7D37.
.myBorderColor { border: 1px solid #AD7D37; }
<div style="border:3px solid #AD7D37">Div</div>
This div border color is #AD7D37.
.myOpacity80 { color: #AD7D37; opacity: 0.8; }
<p style="color:#AD7D37;opacity:0.8;">80%</p>
Text with #AD7D37 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD7D37;}
<p style="text-shadow: 3px 3px 1px #AD7D37">Text here.</p>
This text has shadow with #AD7D37 color.
.textShadow {text-shadow: 3px 3px 1px #AD7D37, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD7D37, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD7D37 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD7D37, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD7D37, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD7D37 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD7D37; -webkit-box-shadow: 1px 1px 3px 2px #AD7D37; box-shadow: 1px 1px 3px 2px #AD7D37; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD7D37; -webkit-box-shadow: 1px 1px 3px 2px #AD7D37; box-shadow:1px 1px 3px 2px #AD7D37;">
Div content here</div>
This text has color #AD7D37 on black background.
This text has color #AD7D37 on white background.
This text has black color on #AD7D37 background.
This text has white color on #AD7D37 background.