HEX: #A6767A
RGB: (166,118,122)
#A6767A contains red, green and blue colors in about the same proportion. Web safe color of #A6767A is #996666 (or #966).
#A6767A color RGB value is (166,118,122).
RGB: (166,118,122) (65%,46%,48%)
R 166 of 255 = 65%
G 118 of 255 = 46%
B 122 of 255 = 48%
R + G + B ~ 53%. #A6767A is middle color (not dark and not light).
R + G + B =
166 + 118 + 122 = 406 (100%)
R 166 of 406 ~ 40.89%
G 118 of 406 ~ 29.06%
B 122 of 406 ~ 30.05%
#A6767A color CMYK value is (0,29,27,35).
CMYK: (0,29,27,35) C0M29Y27K35 (0%,29%,27%,35%) (0.00/0.29/0.27/0.35)
A6 | 76 | 7A | |
---|---|---|---|
RGB | 166 | 118 | 122 |
HSL | 355° | 21.24% | 55.69% |
HSB/HSV | 355° | 28.92% | 65.10% |
CMYK | 0.00% | 28.92% | 26.51% |
34.90% |
HEX | A6 | 76 | 7A |
Decimal | 166 | 118 | 122 |
Binary | 10100110 | 1110110 | 1111010 |
Octal | 246 | 166 | 172 |
Examples of css and html codes for elements with #A6767A color. Also use rgb(166,118,122) instead hex code.
.myTextColor { color: #A6767A; }
<p style="color:#A6767A">This sample text font color is #A6767A.</p>
This text font color is #A6767A.
.myBgColor { background-color: #A6767A; }
<div style="background-color:#A6767A">Inner text</div>
This div background color is #A6767A.
.myBorderColor { border: 1px solid #A6767A; }
<div style="border:3px solid #A6767A">Div</div>
This div border color is #A6767A.
.myOpacity80 { color: #A6767A; opacity: 0.8; }
<p style="color:#A6767A;opacity:0.8;">80%</p>
Text with #A6767A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6767A;}
<p style="text-shadow: 3px 3px 1px #A6767A">Text here.</p>
This text has shadow with #A6767A color.
.textShadow {text-shadow: 3px 3px 1px #A6767A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6767A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6767A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6767A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6767A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6767A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6767A; -webkit-box-shadow: 1px 1px 3px 2px #A6767A; box-shadow: 1px 1px 3px 2px #A6767A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6767A; -webkit-box-shadow: 1px 1px 3px 2px #A6767A; box-shadow:1px 1px 3px 2px #A6767A;">
Div content here</div>
This text has color #A6767A on black background.
This text has color #A6767A on white background.
This text has black color on #A6767A background.
This text has white color on #A6767A background.