HEX: #A37C48
RGB: (163,124,72)
#A37C48 contains mainly red and green colors. Web safe color of #A37C48 is #996633 (or #963).
#A37C48 color RGB value is (163,124,72).
RGB: (163,124,72) (64%,49%,28%)
R 163 of 255 = 64%
G 124 of 255 = 49%
B 72 of 255 = 28%
R + G + B ~ 47%. #A37C48 is middle color (not dark and not light).
R + G + B =
163 + 124 + 72 = 359 (100%)
R 163 of 359 ~ 45.4%
G 124 of 359 ~ 34.54%
B 72 of 359 ~ 20.06%
#A37C48 color CMYK value is (0,24,56,36).
CMYK: (0,24,56,36) C0M24Y56K36 (0%,24%,56%,36%) (0.00/0.24/0.56/0.36)
A3 | 7C | 48 | |
---|---|---|---|
RGB | 163 | 124 | 72 |
HSL | 34° | 38.72% | 46.08% |
HSB/HSV | 34° | 55.83% | 63.92% |
CMYK | 0.00% | 23.93% | 55.83% |
36.08% |
HEX | A3 | 7C | 48 |
Decimal | 163 | 124 | 72 |
Binary | 10100011 | 1111100 | 1001000 |
Octal | 243 | 174 | 110 |
Examples of css and html codes for elements with #A37C48 color. Also use rgb(163,124,72) instead hex code.
.myTextColor { color: #A37C48; }
<p style="color:#A37C48">This sample text font color is #A37C48.</p>
This text font color is #A37C48.
.myBgColor { background-color: #A37C48; }
<div style="background-color:#A37C48">Inner text</div>
This div background color is #A37C48.
.myBorderColor { border: 1px solid #A37C48; }
<div style="border:3px solid #A37C48">Div</div>
This div border color is #A37C48.
.myOpacity80 { color: #A37C48; opacity: 0.8; }
<p style="color:#A37C48;opacity:0.8;">80%</p>
Text with #A37C48 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A37C48;}
<p style="text-shadow: 3px 3px 1px #A37C48">Text here.</p>
This text has shadow with #A37C48 color.
.textShadow {text-shadow: 3px 3px 1px #A37C48, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A37C48, 5px 5px 20px red">Text here.</p>
This text has shadow with #A37C48 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A37C48, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A37C48, Direction=45, Strength=4)">Text</p>
This text has shadow with #A37C48 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A37C48; -webkit-box-shadow: 1px 1px 3px 2px #A37C48; box-shadow: 1px 1px 3px 2px #A37C48; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A37C48; -webkit-box-shadow: 1px 1px 3px 2px #A37C48; box-shadow:1px 1px 3px 2px #A37C48;">
Div content here</div>
This text has color #A37C48 on black background.
This text has color #A37C48 on white background.
This text has black color on #A37C48 background.
This text has white color on #A37C48 background.