HEX: #A5746D
RGB: (165,116,109)
#A5746D contains red, green and blue colors in about the same proportion. Web safe color of #A5746D is #996666 (or #966).
#A5746D color RGB value is (165,116,109).
RGB: (165,116,109) (65%,45%,43%)
R 165 of 255 = 65%
G 116 of 255 = 45%
B 109 of 255 = 43%
R + G + B ~ 51%. #A5746D is middle color (not dark and not light).
R + G + B =
165 + 116 + 109 = 390 (100%)
R 165 of 390 ~ 42.31%
G 116 of 390 ~ 29.74%
B 109 of 390 ~ 27.95%
#A5746D color CMYK value is (0,30,34,35).
CMYK: (0,30,34,35) C0M30Y34K35 (0%,30%,34%,35%) (0.00/0.30/0.34/0.35)
A5 | 74 | 6D | |
---|---|---|---|
RGB | 165 | 116 | 109 |
HSL | 8° | 23.73% | 53.73% |
HSB/HSV | 8° | 33.94% | 64.71% |
CMYK | 0.00% | 29.70% | 33.94% |
35.29% |
HEX | A5 | 74 | 6D |
Decimal | 165 | 116 | 109 |
Binary | 10100101 | 1110100 | 1101101 |
Octal | 245 | 164 | 155 |
Examples of css and html codes for elements with #A5746D color. Also use rgb(165,116,109) instead hex code.
.myTextColor { color: #A5746D; }
<p style="color:#A5746D">This sample text font color is #A5746D.</p>
This text font color is #A5746D.
.myBgColor { background-color: #A5746D; }
<div style="background-color:#A5746D">Inner text</div>
This div background color is #A5746D.
.myBorderColor { border: 1px solid #A5746D; }
<div style="border:3px solid #A5746D">Div</div>
This div border color is #A5746D.
.myOpacity80 { color: #A5746D; opacity: 0.8; }
<p style="color:#A5746D;opacity:0.8;">80%</p>
Text with #A5746D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5746D;}
<p style="text-shadow: 3px 3px 1px #A5746D">Text here.</p>
This text has shadow with #A5746D color.
.textShadow {text-shadow: 3px 3px 1px #A5746D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5746D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5746D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5746D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5746D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5746D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5746D; -webkit-box-shadow: 1px 1px 3px 2px #A5746D; box-shadow: 1px 1px 3px 2px #A5746D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5746D; -webkit-box-shadow: 1px 1px 3px 2px #A5746D; box-shadow:1px 1px 3px 2px #A5746D;">
Div content here</div>
This text has color #A5746D on black background.
This text has color #A5746D on white background.
This text has black color on #A5746D background.
This text has white color on #A5746D background.