HEX: #A76D73
RGB: (167,109,115)
#A76D73 contains red, green and blue colors in about the same proportion. Web safe color of #A76D73 is #996666 (or #966).
#A76D73 color RGB value is (167,109,115).
RGB: (167,109,115) (65%,43%,45%)
R 167 of 255 = 65%
G 109 of 255 = 43%
B 115 of 255 = 45%
R + G + B ~ 51%. #A76D73 is middle color (not dark and not light).
R + G + B =
167 + 109 + 115 = 391 (100%)
R 167 of 391 ~ 42.71%
G 109 of 391 ~ 27.88%
B 115 of 391 ~ 29.41%
#A76D73 color CMYK value is (0,35,31,35).
CMYK: (0,35,31,35) C0M35Y31K35 (0%,35%,31%,35%) (0.00/0.35/0.31/0.35)
A7 | 6D | 73 | |
---|---|---|---|
RGB | 167 | 109 | 115 |
HSL | 354° | 24.79% | 54.12% |
HSB/HSV | 354° | 34.73% | 65.49% |
CMYK | 0.00% | 34.73% | 31.14% |
34.51% |
HEX | A7 | 6D | 73 |
Decimal | 167 | 109 | 115 |
Binary | 10100111 | 1101101 | 1110011 |
Octal | 247 | 155 | 163 |
Examples of css and html codes for elements with #A76D73 color. Also use rgb(167,109,115) instead hex code.
.myTextColor { color: #A76D73; }
<p style="color:#A76D73">This sample text font color is #A76D73.</p>
This text font color is #A76D73.
.myBgColor { background-color: #A76D73; }
<div style="background-color:#A76D73">Inner text</div>
This div background color is #A76D73.
.myBorderColor { border: 1px solid #A76D73; }
<div style="border:3px solid #A76D73">Div</div>
This div border color is #A76D73.
.myOpacity80 { color: #A76D73; opacity: 0.8; }
<p style="color:#A76D73;opacity:0.8;">80%</p>
Text with #A76D73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A76D73;}
<p style="text-shadow: 3px 3px 1px #A76D73">Text here.</p>
This text has shadow with #A76D73 color.
.textShadow {text-shadow: 3px 3px 1px #A76D73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A76D73, 5px 5px 20px red">Text here.</p>
This text has shadow with #A76D73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A76D73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A76D73, Direction=45, Strength=4)">Text</p>
This text has shadow with #A76D73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A76D73; -webkit-box-shadow: 1px 1px 3px 2px #A76D73; box-shadow: 1px 1px 3px 2px #A76D73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A76D73; -webkit-box-shadow: 1px 1px 3px 2px #A76D73; box-shadow:1px 1px 3px 2px #A76D73;">
Div content here</div>
This text has color #A76D73 on black background.
This text has color #A76D73 on white background.
This text has black color on #A76D73 background.
This text has white color on #A76D73 background.