HEX: #A58947
RGB: (165,137,71)
#A58947 contains mainly red and green colors. Web safe color of #A58947 is #999933 (or #993).
#A58947 color RGB value is (165,137,71).
RGB: (165,137,71) (65%,54%,28%)
R 165 of 255 = 65%
G 137 of 255 = 54%
B 71 of 255 = 28%
R + G + B ~ 49%. #A58947 is middle color (not dark and not light).
R + G + B =
165 + 137 + 71 = 373 (100%)
R 165 of 373 ~ 44.24%
G 137 of 373 ~ 36.73%
B 71 of 373 ~ 19.03%
#A58947 color CMYK value is (0,17,57,35).
CMYK: (0,17,57,35) C0M17Y57K35 (0%,17%,57%,35%) (0.00/0.17/0.57/0.35)
A5 | 89 | 47 | |
---|---|---|---|
RGB | 165 | 137 | 71 |
HSL | 42° | 39.83% | 46.27% |
HSB/HSV | 42° | 56.97% | 64.71% |
CMYK | 0.00% | 16.97% | 56.97% |
35.29% |
HEX | A5 | 89 | 47 |
Decimal | 165 | 137 | 71 |
Binary | 10100101 | 10001001 | 1000111 |
Octal | 245 | 211 | 107 |
Examples of css and html codes for elements with #A58947 color. Also use rgb(165,137,71) instead hex code.
.myTextColor { color: #A58947; }
<p style="color:#A58947">This sample text font color is #A58947.</p>
This text font color is #A58947.
.myBgColor { background-color: #A58947; }
<div style="background-color:#A58947">Inner text</div>
This div background color is #A58947.
.myBorderColor { border: 1px solid #A58947; }
<div style="border:3px solid #A58947">Div</div>
This div border color is #A58947.
.myOpacity80 { color: #A58947; opacity: 0.8; }
<p style="color:#A58947;opacity:0.8;">80%</p>
Text with #A58947 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58947;}
<p style="text-shadow: 3px 3px 1px #A58947">Text here.</p>
This text has shadow with #A58947 color.
.textShadow {text-shadow: 3px 3px 1px #A58947, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58947, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58947 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58947, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58947, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58947 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58947; -webkit-box-shadow: 1px 1px 3px 2px #A58947; box-shadow: 1px 1px 3px 2px #A58947; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58947; -webkit-box-shadow: 1px 1px 3px 2px #A58947; box-shadow:1px 1px 3px 2px #A58947;">
Div content here</div>
This text has color #A58947 on black background.
This text has color #A58947 on white background.
This text has black color on #A58947 background.
This text has white color on #A58947 background.