HEX: #A58261
RGB: (165,130,97)
#A58261 contains mainly red and green colors. Web safe color of #A58261 is #999966 (or #996).
#A58261 color RGB value is (165,130,97).
RGB: (165,130,97) (65%,51%,38%)
R 165 of 255 = 65%
G 130 of 255 = 51%
B 97 of 255 = 38%
R + G + B ~ 51%. #A58261 is middle color (not dark and not light).
R + G + B =
165 + 130 + 97 = 392 (100%)
R 165 of 392 ~ 42.09%
G 130 of 392 ~ 33.16%
B 97 of 392 ~ 24.74%
#A58261 color CMYK value is (0,21,41,35).
CMYK: (0,21,41,35) C0M21Y41K35 (0%,21%,41%,35%) (0.00/0.21/0.41/0.35)
A5 | 82 | 61 | |
---|---|---|---|
RGB | 165 | 130 | 97 |
HSL | 29° | 27.42% | 51.37% |
HSB/HSV | 29° | 41.21% | 64.71% |
CMYK | 0.00% | 21.21% | 41.21% |
35.29% |
HEX | A5 | 82 | 61 |
Decimal | 165 | 130 | 97 |
Binary | 10100101 | 10000010 | 1100001 |
Octal | 245 | 202 | 141 |
Examples of css and html codes for elements with #A58261 color. Also use rgb(165,130,97) instead hex code.
.myTextColor { color: #A58261; }
<p style="color:#A58261">This sample text font color is #A58261.</p>
This text font color is #A58261.
.myBgColor { background-color: #A58261; }
<div style="background-color:#A58261">Inner text</div>
This div background color is #A58261.
.myBorderColor { border: 1px solid #A58261; }
<div style="border:3px solid #A58261">Div</div>
This div border color is #A58261.
.myOpacity80 { color: #A58261; opacity: 0.8; }
<p style="color:#A58261;opacity:0.8;">80%</p>
Text with #A58261 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58261;}
<p style="text-shadow: 3px 3px 1px #A58261">Text here.</p>
This text has shadow with #A58261 color.
.textShadow {text-shadow: 3px 3px 1px #A58261, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58261, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58261 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58261, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58261, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58261 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58261; -webkit-box-shadow: 1px 1px 3px 2px #A58261; box-shadow: 1px 1px 3px 2px #A58261; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58261; -webkit-box-shadow: 1px 1px 3px 2px #A58261; box-shadow:1px 1px 3px 2px #A58261;">
Div content here</div>
This text has color #A58261 on black background.
This text has color #A58261 on white background.
This text has black color on #A58261 background.
This text has white color on #A58261 background.