HEX: #A58F7E
RGB: (165,143,126)
#A58F7E contains red, green and blue colors in about the same proportion. Web safe color of #A58F7E is #999966 (or #996).
#A58F7E color RGB value is (165,143,126).
RGB: (165,143,126) (65%,56%,49%)
R 165 of 255 = 65%
G 143 of 255 = 56%
B 126 of 255 = 49%
R + G + B ~ 57%. #A58F7E is middle color (not dark and not light).
R + G + B =
165 + 143 + 126 = 434 (100%)
R 165 of 434 ~ 38.02%
G 143 of 434 ~ 32.95%
B 126 of 434 ~ 29.03%
#A58F7E color CMYK value is (0,13,24,35).
CMYK: (0,13,24,35) C0M13Y24K35 (0%,13%,24%,35%) (0.00/0.13/0.24/0.35)
A5 | 8F | 7E | |
---|---|---|---|
RGB | 165 | 143 | 126 |
HSL | 26° | 17.81% | 57.06% |
HSB/HSV | 26° | 23.64% | 64.71% |
CMYK | 0.00% | 13.33% | 23.64% |
35.29% |
HEX | A5 | 8F | 7E |
Decimal | 165 | 143 | 126 |
Binary | 10100101 | 10001111 | 1111110 |
Octal | 245 | 217 | 176 |
Examples of css and html codes for elements with #A58F7E color. Also use rgb(165,143,126) instead hex code.
.myTextColor { color: #A58F7E; }
<p style="color:#A58F7E">This sample text font color is #A58F7E.</p>
This text font color is #A58F7E.
.myBgColor { background-color: #A58F7E; }
<div style="background-color:#A58F7E">Inner text</div>
This div background color is #A58F7E.
.myBorderColor { border: 1px solid #A58F7E; }
<div style="border:3px solid #A58F7E">Div</div>
This div border color is #A58F7E.
.myOpacity80 { color: #A58F7E; opacity: 0.8; }
<p style="color:#A58F7E;opacity:0.8;">80%</p>
Text with #A58F7E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58F7E;}
<p style="text-shadow: 3px 3px 1px #A58F7E">Text here.</p>
This text has shadow with #A58F7E color.
.textShadow {text-shadow: 3px 3px 1px #A58F7E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58F7E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58F7E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58F7E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58F7E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58F7E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58F7E; -webkit-box-shadow: 1px 1px 3px 2px #A58F7E; box-shadow: 1px 1px 3px 2px #A58F7E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58F7E; -webkit-box-shadow: 1px 1px 3px 2px #A58F7E; box-shadow:1px 1px 3px 2px #A58F7E;">
Div content here</div>
This text has color #A58F7E on black background.
This text has color #A58F7E on white background.
This text has black color on #A58F7E background.
This text has white color on #A58F7E background.