HEX: #A58591
RGB: (165,133,145)
#A58591 contains red, green and blue colors in about the same proportion. Web safe color of #A58591 is #999999 (or #999).
#A58591 color RGB value is (165,133,145).
RGB: (165,133,145) (65%,52%,57%)
R 165 of 255 = 65%
G 133 of 255 = 52%
B 145 of 255 = 57%
R + G + B ~ 58%. #A58591 is middle color (not dark and not light).
R + G + B =
165 + 133 + 145 = 443 (100%)
R 165 of 443 ~ 37.25%
G 133 of 443 ~ 30.02%
B 145 of 443 ~ 32.73%
#A58591 color CMYK value is (0,19,12,35).
CMYK: (0,19,12,35) C0M19Y12K35 (0%,19%,12%,35%) (0.00/0.19/0.12/0.35)
A5 | 85 | 91 | |
---|---|---|---|
RGB | 165 | 133 | 145 |
HSL | 338° | 15.09% | 58.43% |
HSB/HSV | 338° | 19.39% | 64.71% |
CMYK | 0.00% | 19.39% | 12.12% |
35.29% |
HEX | A5 | 85 | 91 |
Decimal | 165 | 133 | 145 |
Binary | 10100101 | 10000101 | 10010001 |
Octal | 245 | 205 | 221 |
Examples of css and html codes for elements with #A58591 color. Also use rgb(165,133,145) instead hex code.
.myTextColor { color: #A58591; }
<p style="color:#A58591">This sample text font color is #A58591.</p>
This text font color is #A58591.
.myBgColor { background-color: #A58591; }
<div style="background-color:#A58591">Inner text</div>
This div background color is #A58591.
.myBorderColor { border: 1px solid #A58591; }
<div style="border:3px solid #A58591">Div</div>
This div border color is #A58591.
.myOpacity80 { color: #A58591; opacity: 0.8; }
<p style="color:#A58591;opacity:0.8;">80%</p>
Text with #A58591 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58591;}
<p style="text-shadow: 3px 3px 1px #A58591">Text here.</p>
This text has shadow with #A58591 color.
.textShadow {text-shadow: 3px 3px 1px #A58591, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58591, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58591 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58591, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58591, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58591 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58591; -webkit-box-shadow: 1px 1px 3px 2px #A58591; box-shadow: 1px 1px 3px 2px #A58591; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58591; -webkit-box-shadow: 1px 1px 3px 2px #A58591; box-shadow:1px 1px 3px 2px #A58591;">
Div content here</div>
This text has color #A58591 on black background.
This text has color #A58591 on white background.
This text has black color on #A58591 background.
This text has white color on #A58591 background.