HEX: #A9687C
RGB: (169,104,124)
#A9687C contains mainly red and blue colors. Web safe color of #A9687C is #996666 (or #966).
#A9687C color RGB value is (169,104,124).
RGB: (169,104,124) (66%,41%,49%)
R 169 of 255 = 66%
G 104 of 255 = 41%
B 124 of 255 = 49%
R + G + B ~ 52%. #A9687C is middle color (not dark and not light).
R + G + B =
169 + 104 + 124 = 397 (100%)
R 169 of 397 ~ 42.57%
G 104 of 397 ~ 26.2%
B 124 of 397 ~ 31.23%
#A9687C color CMYK value is (0,38,27,34).
CMYK: (0,38,27,34) C0M38Y27K34 (0%,38%,27%,34%) (0.00/0.38/0.27/0.34)
A9 | 68 | 7C | |
---|---|---|---|
RGB | 169 | 104 | 124 |
HSL | 342° | 27.43% | 53.53% |
HSB/HSV | 342° | 38.46% | 66.27% |
CMYK | 0.00% | 38.46% | 26.63% |
33.73% |
HEX | A9 | 68 | 7C |
Decimal | 169 | 104 | 124 |
Binary | 10101001 | 1101000 | 1111100 |
Octal | 251 | 150 | 174 |
Examples of css and html codes for elements with #A9687C color. Also use rgb(169,104,124) instead hex code.
.myTextColor { color: #A9687C; }
<p style="color:#A9687C">This sample text font color is #A9687C.</p>
This text font color is #A9687C.
.myBgColor { background-color: #A9687C; }
<div style="background-color:#A9687C">Inner text</div>
This div background color is #A9687C.
.myBorderColor { border: 1px solid #A9687C; }
<div style="border:3px solid #A9687C">Div</div>
This div border color is #A9687C.
.myOpacity80 { color: #A9687C; opacity: 0.8; }
<p style="color:#A9687C;opacity:0.8;">80%</p>
Text with #A9687C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9687C;}
<p style="text-shadow: 3px 3px 1px #A9687C">Text here.</p>
This text has shadow with #A9687C color.
.textShadow {text-shadow: 3px 3px 1px #A9687C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9687C, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9687C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9687C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9687C, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9687C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9687C; -webkit-box-shadow: 1px 1px 3px 2px #A9687C; box-shadow: 1px 1px 3px 2px #A9687C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9687C; -webkit-box-shadow: 1px 1px 3px 2px #A9687C; box-shadow:1px 1px 3px 2px #A9687C;">
Div content here</div>
This text has color #A9687C on black background.
This text has color #A9687C on white background.
This text has black color on #A9687C background.
This text has white color on #A9687C background.