HEX: #A77221
RGB: (167,114,33)
#A77221 contains mainly red and green colors. Web safe color of #A77221 is #996633 (or #963).
#A77221 color RGB value is (167,114,33).
RGB: (167,114,33) (65%,45%,13%)
R 167 of 255 = 65%
G 114 of 255 = 45%
B 33 of 255 = 13%
R + G + B ~ 41%. #A77221 is middle color (not dark and not light).
R + G + B =
167 + 114 + 33 = 314 (100%)
R 167 of 314 ~ 53.18%
G 114 of 314 ~ 36.31%
B 33 of 314 ~ 10.51%
#A77221 color CMYK value is (0,32,80,35).
CMYK: (0,32,80,35) C0M32Y80K35 (0%,32%,80%,35%) (0.00/0.32/0.80/0.35)
A7 | 72 | 21 | |
---|---|---|---|
RGB | 167 | 114 | 33 |
HSL | 36° | 67.00% | 39.22% |
HSB/HSV | 36° | 80.24% | 65.49% |
CMYK | 0.00% | 31.74% | 80.24% |
34.51% |
HEX | A7 | 72 | 21 |
Decimal | 167 | 114 | 33 |
Binary | 10100111 | 1110010 | 100001 |
Octal | 247 | 162 | 41 |
Examples of css and html codes for elements with #A77221 color. Also use rgb(167,114,33) instead hex code.
.myTextColor { color: #A77221; }
<p style="color:#A77221">This sample text font color is #A77221.</p>
This text font color is #A77221.
.myBgColor { background-color: #A77221; }
<div style="background-color:#A77221">Inner text</div>
This div background color is #A77221.
.myBorderColor { border: 1px solid #A77221; }
<div style="border:3px solid #A77221">Div</div>
This div border color is #A77221.
.myOpacity80 { color: #A77221; opacity: 0.8; }
<p style="color:#A77221;opacity:0.8;">80%</p>
Text with #A77221 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A77221;}
<p style="text-shadow: 3px 3px 1px #A77221">Text here.</p>
This text has shadow with #A77221 color.
.textShadow {text-shadow: 3px 3px 1px #A77221, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A77221, 5px 5px 20px red">Text here.</p>
This text has shadow with #A77221 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A77221, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A77221, Direction=45, Strength=4)">Text</p>
This text has shadow with #A77221 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A77221; -webkit-box-shadow: 1px 1px 3px 2px #A77221; box-shadow: 1px 1px 3px 2px #A77221; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A77221; -webkit-box-shadow: 1px 1px 3px 2px #A77221; box-shadow:1px 1px 3px 2px #A77221;">
Div content here</div>
This text has color #A77221 on black background.
This text has color #A77221 on white background.
This text has black color on #A77221 background.
This text has white color on #A77221 background.