HEX: #A6827A
RGB: (166,130,122)
#A6827A contains red, green and blue colors in about the same proportion. Web safe color of #A6827A is #999966 (or #996).
#A6827A color RGB value is (166,130,122).
RGB: (166,130,122) (65%,51%,48%)
R 166 of 255 = 65%
G 130 of 255 = 51%
B 122 of 255 = 48%
R + G + B ~ 55%. #A6827A is middle color (not dark and not light).
R + G + B =
166 + 130 + 122 = 418 (100%)
R 166 of 418 ~ 39.71%
G 130 of 418 ~ 31.1%
B 122 of 418 ~ 29.19%
#A6827A color CMYK value is (0,22,27,35).
CMYK: (0,22,27,35) C0M22Y27K35 (0%,22%,27%,35%) (0.00/0.22/0.27/0.35)
A6 | 82 | 7A | |
---|---|---|---|
RGB | 166 | 130 | 122 |
HSL | 11° | 19.82% | 56.47% |
HSB/HSV | 11° | 26.51% | 65.10% |
CMYK | 0.00% | 21.69% | 26.51% |
34.90% |
HEX | A6 | 82 | 7A |
Decimal | 166 | 130 | 122 |
Binary | 10100110 | 10000010 | 1111010 |
Octal | 246 | 202 | 172 |
Examples of css and html codes for elements with #A6827A color. Also use rgb(166,130,122) instead hex code.
.myTextColor { color: #A6827A; }
<p style="color:#A6827A">This sample text font color is #A6827A.</p>
This text font color is #A6827A.
.myBgColor { background-color: #A6827A; }
<div style="background-color:#A6827A">Inner text</div>
This div background color is #A6827A.
.myBorderColor { border: 1px solid #A6827A; }
<div style="border:3px solid #A6827A">Div</div>
This div border color is #A6827A.
.myOpacity80 { color: #A6827A; opacity: 0.8; }
<p style="color:#A6827A;opacity:0.8;">80%</p>
Text with #A6827A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6827A;}
<p style="text-shadow: 3px 3px 1px #A6827A">Text here.</p>
This text has shadow with #A6827A color.
.textShadow {text-shadow: 3px 3px 1px #A6827A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6827A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6827A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6827A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6827A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6827A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6827A; -webkit-box-shadow: 1px 1px 3px 2px #A6827A; box-shadow: 1px 1px 3px 2px #A6827A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6827A; -webkit-box-shadow: 1px 1px 3px 2px #A6827A; box-shadow:1px 1px 3px 2px #A6827A;">
Div content here</div>
This text has color #A6827A on black background.
This text has color #A6827A on white background.
This text has black color on #A6827A background.
This text has white color on #A6827A background.