HEX: #A5745D
RGB: (165,116,93)
#A5745D contains mainly red and green colors. Web safe color of #A5745D is #996666 (or #966).
#A5745D color RGB value is (165,116,93).
RGB: (165,116,93) (65%,45%,36%)
R 165 of 255 = 65%
G 116 of 255 = 45%
B 93 of 255 = 36%
R + G + B ~ 49%. #A5745D is middle color (not dark and not light).
R + G + B =
165 + 116 + 93 = 374 (100%)
R 165 of 374 ~ 44.12%
G 116 of 374 ~ 31.02%
B 93 of 374 ~ 24.87%
#A5745D color CMYK value is (0,30,44,35).
CMYK: (0,30,44,35) C0M30Y44K35 (0%,30%,44%,35%) (0.00/0.30/0.44/0.35)
A5 | 74 | 5D | |
---|---|---|---|
RGB | 165 | 116 | 93 |
HSL | 19° | 28.57% | 50.59% |
HSB/HSV | 19° | 43.64% | 64.71% |
CMYK | 0.00% | 29.70% | 43.64% |
35.29% |
HEX | A5 | 74 | 5D |
Decimal | 165 | 116 | 93 |
Binary | 10100101 | 1110100 | 1011101 |
Octal | 245 | 164 | 135 |
Examples of css and html codes for elements with #A5745D color. Also use rgb(165,116,93) instead hex code.
.myTextColor { color: #A5745D; }
<p style="color:#A5745D">This sample text font color is #A5745D.</p>
This text font color is #A5745D.
.myBgColor { background-color: #A5745D; }
<div style="background-color:#A5745D">Inner text</div>
This div background color is #A5745D.
.myBorderColor { border: 1px solid #A5745D; }
<div style="border:3px solid #A5745D">Div</div>
This div border color is #A5745D.
.myOpacity80 { color: #A5745D; opacity: 0.8; }
<p style="color:#A5745D;opacity:0.8;">80%</p>
Text with #A5745D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5745D;}
<p style="text-shadow: 3px 3px 1px #A5745D">Text here.</p>
This text has shadow with #A5745D color.
.textShadow {text-shadow: 3px 3px 1px #A5745D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5745D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5745D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5745D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5745D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5745D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5745D; -webkit-box-shadow: 1px 1px 3px 2px #A5745D; box-shadow: 1px 1px 3px 2px #A5745D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5745D; -webkit-box-shadow: 1px 1px 3px 2px #A5745D; box-shadow:1px 1px 3px 2px #A5745D;">
Div content here</div>
This text has color #A5745D on black background.
This text has color #A5745D on white background.
This text has black color on #A5745D background.
This text has white color on #A5745D background.