HEX: #A6766E
RGB: (166,118,110)
#A6766E contains red, green and blue colors in about the same proportion. Web safe color of #A6766E is #996666 (or #966).
#A6766E color RGB value is (166,118,110).
RGB: (166,118,110) (65%,46%,43%)
R 166 of 255 = 65%
G 118 of 255 = 46%
B 110 of 255 = 43%
R + G + B ~ 51%. #A6766E is middle color (not dark and not light).
R + G + B =
166 + 118 + 110 = 394 (100%)
R 166 of 394 ~ 42.13%
G 118 of 394 ~ 29.95%
B 110 of 394 ~ 27.92%
#A6766E color CMYK value is (0,29,34,35).
CMYK: (0,29,34,35) C0M29Y34K35 (0%,29%,34%,35%) (0.00/0.29/0.34/0.35)
A6 | 76 | 6E | |
---|---|---|---|
RGB | 166 | 118 | 110 |
HSL | 9° | 23.93% | 54.12% |
HSB/HSV | 9° | 33.73% | 65.10% |
CMYK | 0.00% | 28.92% | 33.73% |
34.90% |
HEX | A6 | 76 | 6E |
Decimal | 166 | 118 | 110 |
Binary | 10100110 | 1110110 | 1101110 |
Octal | 246 | 166 | 156 |
Examples of css and html codes for elements with #A6766E color. Also use rgb(166,118,110) instead hex code.
.myTextColor { color: #A6766E; }
<p style="color:#A6766E">This sample text font color is #A6766E.</p>
This text font color is #A6766E.
.myBgColor { background-color: #A6766E; }
<div style="background-color:#A6766E">Inner text</div>
This div background color is #A6766E.
.myBorderColor { border: 1px solid #A6766E; }
<div style="border:3px solid #A6766E">Div</div>
This div border color is #A6766E.
.myOpacity80 { color: #A6766E; opacity: 0.8; }
<p style="color:#A6766E;opacity:0.8;">80%</p>
Text with #A6766E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6766E;}
<p style="text-shadow: 3px 3px 1px #A6766E">Text here.</p>
This text has shadow with #A6766E color.
.textShadow {text-shadow: 3px 3px 1px #A6766E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6766E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6766E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6766E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6766E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6766E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6766E; -webkit-box-shadow: 1px 1px 3px 2px #A6766E; box-shadow: 1px 1px 3px 2px #A6766E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6766E; -webkit-box-shadow: 1px 1px 3px 2px #A6766E; box-shadow:1px 1px 3px 2px #A6766E;">
Div content here</div>
This text has color #A6766E on black background.
This text has color #A6766E on white background.
This text has black color on #A6766E background.
This text has white color on #A6766E background.