HEX: #A48D6E
RGB: (164,141,110)
#A48D6E contains red, green and blue colors in about the same proportion. Web safe color of #A48D6E is #999966 (or #996).
#A48D6E color RGB value is (164,141,110).
RGB: (164,141,110) (64%,55%,43%)
R 164 of 255 = 64%
G 141 of 255 = 55%
B 110 of 255 = 43%
R + G + B ~ 54%. #A48D6E is middle color (not dark and not light).
R + G + B =
164 + 141 + 110 = 415 (100%)
R 164 of 415 ~ 39.52%
G 141 of 415 ~ 33.98%
B 110 of 415 ~ 26.51%
#A48D6E color CMYK value is (0,14,33,36).
CMYK: (0,14,33,36) C0M14Y33K36 (0%,14%,33%,36%) (0.00/0.14/0.33/0.36)
A4 | 8D | 6E | |
---|---|---|---|
RGB | 164 | 141 | 110 |
HSL | 34° | 22.88% | 53.73% |
HSB/HSV | 34° | 32.93% | 64.31% |
CMYK | 0.00% | 14.02% | 32.93% |
35.69% |
HEX | A4 | 8D | 6E |
Decimal | 164 | 141 | 110 |
Binary | 10100100 | 10001101 | 1101110 |
Octal | 244 | 215 | 156 |
Examples of css and html codes for elements with #A48D6E color. Also use rgb(164,141,110) instead hex code.
.myTextColor { color: #A48D6E; }
<p style="color:#A48D6E">This sample text font color is #A48D6E.</p>
This text font color is #A48D6E.
.myBgColor { background-color: #A48D6E; }
<div style="background-color:#A48D6E">Inner text</div>
This div background color is #A48D6E.
.myBorderColor { border: 1px solid #A48D6E; }
<div style="border:3px solid #A48D6E">Div</div>
This div border color is #A48D6E.
.myOpacity80 { color: #A48D6E; opacity: 0.8; }
<p style="color:#A48D6E;opacity:0.8;">80%</p>
Text with #A48D6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48D6E;}
<p style="text-shadow: 3px 3px 1px #A48D6E">Text here.</p>
This text has shadow with #A48D6E color.
.textShadow {text-shadow: 3px 3px 1px #A48D6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48D6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48D6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48D6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48D6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48D6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48D6E; -webkit-box-shadow: 1px 1px 3px 2px #A48D6E; box-shadow: 1px 1px 3px 2px #A48D6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48D6E; -webkit-box-shadow: 1px 1px 3px 2px #A48D6E; box-shadow:1px 1px 3px 2px #A48D6E;">
Div content here</div>
This text has color #A48D6E on black background.
This text has color #A48D6E on white background.
This text has black color on #A48D6E background.
This text has white color on #A48D6E background.