HEX: #A58541
RGB: (165,133,65)
#A58541 contains mainly red and green colors. Web safe color of #A58541 is #999933 (or #993).
#A58541 color RGB value is (165,133,65).
RGB: (165,133,65) (65%,52%,25%)
R 165 of 255 = 65%
G 133 of 255 = 52%
B 65 of 255 = 25%
R + G + B ~ 47%. #A58541 is middle color (not dark and not light).
R + G + B =
165 + 133 + 65 = 363 (100%)
R 165 of 363 ~ 45.45%
G 133 of 363 ~ 36.64%
B 65 of 363 ~ 17.91%
#A58541 color CMYK value is (0,19,61,35).
CMYK: (0,19,61,35) C0M19Y61K35 (0%,19%,61%,35%) (0.00/0.19/0.61/0.35)
A5 | 85 | 41 | |
---|---|---|---|
RGB | 165 | 133 | 65 |
HSL | 41° | 43.48% | 45.10% |
HSB/HSV | 41° | 60.61% | 64.71% |
CMYK | 0.00% | 19.39% | 60.61% |
35.29% |
HEX | A5 | 85 | 41 |
Decimal | 165 | 133 | 65 |
Binary | 10100101 | 10000101 | 1000001 |
Octal | 245 | 205 | 101 |
Examples of css and html codes for elements with #A58541 color. Also use rgb(165,133,65) instead hex code.
.myTextColor { color: #A58541; }
<p style="color:#A58541">This sample text font color is #A58541.</p>
This text font color is #A58541.
.myBgColor { background-color: #A58541; }
<div style="background-color:#A58541">Inner text</div>
This div background color is #A58541.
.myBorderColor { border: 1px solid #A58541; }
<div style="border:3px solid #A58541">Div</div>
This div border color is #A58541.
.myOpacity80 { color: #A58541; opacity: 0.8; }
<p style="color:#A58541;opacity:0.8;">80%</p>
Text with #A58541 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58541;}
<p style="text-shadow: 3px 3px 1px #A58541">Text here.</p>
This text has shadow with #A58541 color.
.textShadow {text-shadow: 3px 3px 1px #A58541, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58541, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58541 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58541, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58541, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58541 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58541; -webkit-box-shadow: 1px 1px 3px 2px #A58541; box-shadow: 1px 1px 3px 2px #A58541; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58541; -webkit-box-shadow: 1px 1px 3px 2px #A58541; box-shadow:1px 1px 3px 2px #A58541;">
Div content here</div>
This text has color #A58541 on black background.
This text has color #A58541 on white background.
This text has black color on #A58541 background.
This text has white color on #A58541 background.