HEX: #A7967D
RGB: (167,150,125)
#A7967D contains red, green and blue colors in about the same proportion. Web safe color of #A7967D is #999966 (or #996).
#A7967D color RGB value is (167,150,125).
RGB: (167,150,125) (65%,59%,49%)
R 167 of 255 = 65%
G 150 of 255 = 59%
B 125 of 255 = 49%
R + G + B ~ 58%. #A7967D is middle color (not dark and not light).
R + G + B =
167 + 150 + 125 = 442 (100%)
R 167 of 442 ~ 37.78%
G 150 of 442 ~ 33.94%
B 125 of 442 ~ 28.28%
#A7967D color CMYK value is (0,10,25,35).
CMYK: (0,10,25,35) C0M10Y25K35 (0%,10%,25%,35%) (0.00/0.10/0.25/0.35)
A7 | 96 | 7D | |
---|---|---|---|
RGB | 167 | 150 | 125 |
HSL | 36° | 19.27% | 57.25% |
HSB/HSV | 36° | 25.15% | 65.49% |
CMYK | 0.00% | 10.18% | 25.15% |
34.51% |
HEX | A7 | 96 | 7D |
Decimal | 167 | 150 | 125 |
Binary | 10100111 | 10010110 | 1111101 |
Octal | 247 | 226 | 175 |
Examples of css and html codes for elements with #A7967D color. Also use rgb(167,150,125) instead hex code.
.myTextColor { color: #A7967D; }
<p style="color:#A7967D">This sample text font color is #A7967D.</p>
This text font color is #A7967D.
.myBgColor { background-color: #A7967D; }
<div style="background-color:#A7967D">Inner text</div>
This div background color is #A7967D.
.myBorderColor { border: 1px solid #A7967D; }
<div style="border:3px solid #A7967D">Div</div>
This div border color is #A7967D.
.myOpacity80 { color: #A7967D; opacity: 0.8; }
<p style="color:#A7967D;opacity:0.8;">80%</p>
Text with #A7967D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7967D;}
<p style="text-shadow: 3px 3px 1px #A7967D">Text here.</p>
This text has shadow with #A7967D color.
.textShadow {text-shadow: 3px 3px 1px #A7967D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7967D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7967D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7967D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7967D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7967D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7967D; -webkit-box-shadow: 1px 1px 3px 2px #A7967D; box-shadow: 1px 1px 3px 2px #A7967D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7967D; -webkit-box-shadow: 1px 1px 3px 2px #A7967D; box-shadow:1px 1px 3px 2px #A7967D;">
Div content here</div>
This text has color #A7967D on black background.
This text has color #A7967D on white background.
This text has black color on #A7967D background.
This text has white color on #A7967D background.