HEX: #A77D5E
RGB: (167,125,94)
#A77D5E contains mainly red and green colors. Web safe color of #A77D5E is #996666 (or #966).
#A77D5E color RGB value is (167,125,94).
RGB: (167,125,94) (65%,49%,37%)
R 167 of 255 = 65%
G 125 of 255 = 49%
B 94 of 255 = 37%
R + G + B ~ 50%. #A77D5E is middle color (not dark and not light).
R + G + B =
167 + 125 + 94 = 386 (100%)
R 167 of 386 ~ 43.26%
G 125 of 386 ~ 32.38%
B 94 of 386 ~ 24.35%
#A77D5E color CMYK value is (0,25,44,35).
CMYK: (0,25,44,35) C0M25Y44K35 (0%,25%,44%,35%) (0.00/0.25/0.44/0.35)
A7 | 7D | 5E | |
---|---|---|---|
RGB | 167 | 125 | 94 |
HSL | 25° | 29.32% | 51.18% |
HSB/HSV | 25° | 43.71% | 65.49% |
CMYK | 0.00% | 25.15% | 43.71% |
34.51% |
HEX | A7 | 7D | 5E |
Decimal | 167 | 125 | 94 |
Binary | 10100111 | 1111101 | 1011110 |
Octal | 247 | 175 | 136 |
Examples of css and html codes for elements with #A77D5E color. Also use rgb(167,125,94) instead hex code.
.myTextColor { color: #A77D5E; }
<p style="color:#A77D5E">This sample text font color is #A77D5E.</p>
This text font color is #A77D5E.
.myBgColor { background-color: #A77D5E; }
<div style="background-color:#A77D5E">Inner text</div>
This div background color is #A77D5E.
.myBorderColor { border: 1px solid #A77D5E; }
<div style="border:3px solid #A77D5E">Div</div>
This div border color is #A77D5E.
.myOpacity80 { color: #A77D5E; opacity: 0.8; }
<p style="color:#A77D5E;opacity:0.8;">80%</p>
Text with #A77D5E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A77D5E;}
<p style="text-shadow: 3px 3px 1px #A77D5E">Text here.</p>
This text has shadow with #A77D5E color.
.textShadow {text-shadow: 3px 3px 1px #A77D5E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A77D5E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A77D5E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A77D5E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A77D5E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A77D5E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A77D5E; -webkit-box-shadow: 1px 1px 3px 2px #A77D5E; box-shadow: 1px 1px 3px 2px #A77D5E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A77D5E; -webkit-box-shadow: 1px 1px 3px 2px #A77D5E; box-shadow:1px 1px 3px 2px #A77D5E;">
Div content here</div>
This text has color #A77D5E on black background.
This text has color #A77D5E on white background.
This text has black color on #A77D5E background.
This text has white color on #A77D5E background.