HEX: #A66B31
RGB: (166,107,49)
#A66B31 contains mainly red and green colors. Web safe color of #A66B31 is #996633 (or #963).
#A66B31 color RGB value is (166,107,49).
RGB: (166,107,49) (65%,42%,19%)
R 166 of 255 = 65%
G 107 of 255 = 42%
B 49 of 255 = 19%
R + G + B ~ 42%. #A66B31 is middle color (not dark and not light).
R + G + B =
166 + 107 + 49 = 322 (100%)
R 166 of 322 ~ 51.55%
G 107 of 322 ~ 33.23%
B 49 of 322 ~ 15.22%
#A66B31 color CMYK value is (0,36,70,35).
CMYK: (0,36,70,35) C0M36Y70K35 (0%,36%,70%,35%) (0.00/0.36/0.70/0.35)
A6 | 6B | 31 | |
---|---|---|---|
RGB | 166 | 107 | 49 |
HSL | 30° | 54.42% | 42.16% |
HSB/HSV | 30° | 70.48% | 65.10% |
CMYK | 0.00% | 35.54% | 70.48% |
34.90% |
HEX | A6 | 6B | 31 |
Decimal | 166 | 107 | 49 |
Binary | 10100110 | 1101011 | 110001 |
Octal | 246 | 153 | 61 |
Examples of css and html codes for elements with #A66B31 color. Also use rgb(166,107,49) instead hex code.
.myTextColor { color: #A66B31; }
<p style="color:#A66B31">This sample text font color is #A66B31.</p>
This text font color is #A66B31.
.myBgColor { background-color: #A66B31; }
<div style="background-color:#A66B31">Inner text</div>
This div background color is #A66B31.
.myBorderColor { border: 1px solid #A66B31; }
<div style="border:3px solid #A66B31">Div</div>
This div border color is #A66B31.
.myOpacity80 { color: #A66B31; opacity: 0.8; }
<p style="color:#A66B31;opacity:0.8;">80%</p>
Text with #A66B31 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A66B31;}
<p style="text-shadow: 3px 3px 1px #A66B31">Text here.</p>
This text has shadow with #A66B31 color.
.textShadow {text-shadow: 3px 3px 1px #A66B31, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A66B31, 5px 5px 20px red">Text here.</p>
This text has shadow with #A66B31 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A66B31, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A66B31, Direction=45, Strength=4)">Text</p>
This text has shadow with #A66B31 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A66B31; -webkit-box-shadow: 1px 1px 3px 2px #A66B31; box-shadow: 1px 1px 3px 2px #A66B31; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A66B31; -webkit-box-shadow: 1px 1px 3px 2px #A66B31; box-shadow:1px 1px 3px 2px #A66B31;">
Div content here</div>
This text has color #A66B31 on black background.
This text has color #A66B31 on white background.
This text has black color on #A66B31 background.
This text has white color on #A66B31 background.