HEX: #A6686E
RGB: (166,104,110)
#A6686E contains mainly red and blue colors. Web safe color of #A6686E is #996666 (or #966).
#A6686E color RGB value is (166,104,110).
RGB: (166,104,110) (65%,41%,43%)
R 166 of 255 = 65%
G 104 of 255 = 41%
B 110 of 255 = 43%
R + G + B ~ 50%. #A6686E is middle color (not dark and not light).
R + G + B =
166 + 104 + 110 = 380 (100%)
R 166 of 380 ~ 43.68%
G 104 of 380 ~ 27.37%
B 110 of 380 ~ 28.95%
#A6686E color CMYK value is (0,37,34,35).
CMYK: (0,37,34,35) C0M37Y34K35 (0%,37%,34%,35%) (0.00/0.37/0.34/0.35)
A6 | 68 | 6E | |
---|---|---|---|
RGB | 166 | 104 | 110 |
HSL | 354° | 25.83% | 52.94% |
HSB/HSV | 354° | 37.35% | 65.10% |
CMYK | 0.00% | 37.35% | 33.73% |
34.90% |
HEX | A6 | 68 | 6E |
Decimal | 166 | 104 | 110 |
Binary | 10100110 | 1101000 | 1101110 |
Octal | 246 | 150 | 156 |
Examples of css and html codes for elements with #A6686E color. Also use rgb(166,104,110) instead hex code.
.myTextColor { color: #A6686E; }
<p style="color:#A6686E">This sample text font color is #A6686E.</p>
This text font color is #A6686E.
.myBgColor { background-color: #A6686E; }
<div style="background-color:#A6686E">Inner text</div>
This div background color is #A6686E.
.myBorderColor { border: 1px solid #A6686E; }
<div style="border:3px solid #A6686E">Div</div>
This div border color is #A6686E.
.myOpacity80 { color: #A6686E; opacity: 0.8; }
<p style="color:#A6686E;opacity:0.8;">80%</p>
Text with #A6686E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6686E;}
<p style="text-shadow: 3px 3px 1px #A6686E">Text here.</p>
This text has shadow with #A6686E color.
.textShadow {text-shadow: 3px 3px 1px #A6686E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6686E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6686E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6686E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6686E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6686E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6686E; -webkit-box-shadow: 1px 1px 3px 2px #A6686E; box-shadow: 1px 1px 3px 2px #A6686E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6686E; -webkit-box-shadow: 1px 1px 3px 2px #A6686E; box-shadow:1px 1px 3px 2px #A6686E;">
Div content here</div>
This text has color #A6686E on black background.
This text has color #A6686E on white background.
This text has black color on #A6686E background.
This text has white color on #A6686E background.