HEX: #A6698F
RGB: (166,105,143)
#A6698F contains mainly red and blue colors. Web safe color of #A6698F is #996699 (or #969).
#A6698F color RGB value is (166,105,143).
RGB: (166,105,143) (65%,41%,56%)
R 166 of 255 = 65%
G 105 of 255 = 41%
B 143 of 255 = 56%
R + G + B ~ 54%. #A6698F is middle color (not dark and not light).
R + G + B =
166 + 105 + 143 = 414 (100%)
R 166 of 414 ~ 40.1%
G 105 of 414 ~ 25.36%
B 143 of 414 ~ 34.54%
#A6698F color CMYK value is (0,37,14,35).
CMYK: (0,37,14,35) C0M37Y14K35 (0%,37%,14%,35%) (0.00/0.37/0.14/0.35)
A6 | 69 | 8F | |
---|---|---|---|
RGB | 166 | 105 | 143 |
HSL | 323° | 25.52% | 53.14% |
HSB/HSV | 323° | 36.75% | 65.10% |
CMYK | 0.00% | 36.75% | 13.86% |
34.90% |
HEX | A6 | 69 | 8F |
Decimal | 166 | 105 | 143 |
Binary | 10100110 | 1101001 | 10001111 |
Octal | 246 | 151 | 217 |
Examples of css and html codes for elements with #A6698F color. Also use rgb(166,105,143) instead hex code.
.myTextColor { color: #A6698F; }
<p style="color:#A6698F">This sample text font color is #A6698F.</p>
This text font color is #A6698F.
.myBgColor { background-color: #A6698F; }
<div style="background-color:#A6698F">Inner text</div>
This div background color is #A6698F.
.myBorderColor { border: 1px solid #A6698F; }
<div style="border:3px solid #A6698F">Div</div>
This div border color is #A6698F.
.myOpacity80 { color: #A6698F; opacity: 0.8; }
<p style="color:#A6698F;opacity:0.8;">80%</p>
Text with #A6698F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6698F;}
<p style="text-shadow: 3px 3px 1px #A6698F">Text here.</p>
This text has shadow with #A6698F color.
.textShadow {text-shadow: 3px 3px 1px #A6698F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6698F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6698F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6698F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6698F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6698F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6698F; -webkit-box-shadow: 1px 1px 3px 2px #A6698F; box-shadow: 1px 1px 3px 2px #A6698F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6698F; -webkit-box-shadow: 1px 1px 3px 2px #A6698F; box-shadow:1px 1px 3px 2px #A6698F;">
Div content here</div>
This text has color #A6698F on black background.
This text has color #A6698F on white background.
This text has black color on #A6698F background.
This text has white color on #A6698F background.