HEX: #A46E4E
RGB: (164,110,78)
#A46E4E contains mainly red and green colors. Web safe color of #A46E4E is #996666 (or #966).
#A46E4E color RGB value is (164,110,78).
RGB: (164,110,78) (64%,43%,31%)
R 164 of 255 = 64%
G 110 of 255 = 43%
B 78 of 255 = 31%
R + G + B ~ 46%. #A46E4E is middle color (not dark and not light).
R + G + B =
164 + 110 + 78 = 352 (100%)
R 164 of 352 ~ 46.59%
G 110 of 352 ~ 31.25%
B 78 of 352 ~ 22.16%
#A46E4E color CMYK value is (0,33,52,36).
CMYK: (0,33,52,36) C0M33Y52K36 (0%,33%,52%,36%) (0.00/0.33/0.52/0.36)
A4 | 6E | 4E | |
---|---|---|---|
RGB | 164 | 110 | 78 |
HSL | 22° | 35.54% | 47.45% |
HSB/HSV | 22° | 52.44% | 64.31% |
CMYK | 0.00% | 32.93% | 52.44% |
35.69% |
HEX | A4 | 6E | 4E |
Decimal | 164 | 110 | 78 |
Binary | 10100100 | 1101110 | 1001110 |
Octal | 244 | 156 | 116 |
Examples of css and html codes for elements with #A46E4E color. Also use rgb(164,110,78) instead hex code.
.myTextColor { color: #A46E4E; }
<p style="color:#A46E4E">This sample text font color is #A46E4E.</p>
This text font color is #A46E4E.
.myBgColor { background-color: #A46E4E; }
<div style="background-color:#A46E4E">Inner text</div>
This div background color is #A46E4E.
.myBorderColor { border: 1px solid #A46E4E; }
<div style="border:3px solid #A46E4E">Div</div>
This div border color is #A46E4E.
.myOpacity80 { color: #A46E4E; opacity: 0.8; }
<p style="color:#A46E4E;opacity:0.8;">80%</p>
Text with #A46E4E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A46E4E;}
<p style="text-shadow: 3px 3px 1px #A46E4E">Text here.</p>
This text has shadow with #A46E4E color.
.textShadow {text-shadow: 3px 3px 1px #A46E4E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A46E4E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A46E4E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A46E4E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A46E4E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A46E4E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A46E4E; -webkit-box-shadow: 1px 1px 3px 2px #A46E4E; box-shadow: 1px 1px 3px 2px #A46E4E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A46E4E; -webkit-box-shadow: 1px 1px 3px 2px #A46E4E; box-shadow:1px 1px 3px 2px #A46E4E;">
Div content here</div>
This text has color #A46E4E on black background.
This text has color #A46E4E on white background.
This text has black color on #A46E4E background.
This text has white color on #A46E4E background.