HEX: #A5958A
RGB: (165,149,138)
#A5958A contains red, green and blue colors in about the same proportion. Web safe color of #A5958A is #999999 (or #999).
#A5958A color RGB value is (165,149,138).
RGB: (165,149,138) (65%,58%,54%)
R 165 of 255 = 65%
G 149 of 255 = 58%
B 138 of 255 = 54%
R + G + B ~ 59%. #A5958A is middle color (not dark and not light).
R + G + B =
165 + 149 + 138 = 452 (100%)
R 165 of 452 ~ 36.5%
G 149 of 452 ~ 32.96%
B 138 of 452 ~ 30.53%
#A5958A color CMYK value is (0,10,16,35).
CMYK: (0,10,16,35) C0M10Y16K35 (0%,10%,16%,35%) (0.00/0.10/0.16/0.35)
A5 | 95 | 8A | |
---|---|---|---|
RGB | 165 | 149 | 138 |
HSL | 24° | 13.04% | 59.41% |
HSB/HSV | 24° | 16.36% | 64.71% |
CMYK | 0.00% | 9.70% | 16.36% |
35.29% |
HEX | A5 | 95 | 8A |
Decimal | 165 | 149 | 138 |
Binary | 10100101 | 10010101 | 10001010 |
Octal | 245 | 225 | 212 |
Examples of css and html codes for elements with #A5958A color. Also use rgb(165,149,138) instead hex code.
.myTextColor { color: #A5958A; }
<p style="color:#A5958A">This sample text font color is #A5958A.</p>
This text font color is #A5958A.
.myBgColor { background-color: #A5958A; }
<div style="background-color:#A5958A">Inner text</div>
This div background color is #A5958A.
.myBorderColor { border: 1px solid #A5958A; }
<div style="border:3px solid #A5958A">Div</div>
This div border color is #A5958A.
.myOpacity80 { color: #A5958A; opacity: 0.8; }
<p style="color:#A5958A;opacity:0.8;">80%</p>
Text with #A5958A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5958A;}
<p style="text-shadow: 3px 3px 1px #A5958A">Text here.</p>
This text has shadow with #A5958A color.
.textShadow {text-shadow: 3px 3px 1px #A5958A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5958A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5958A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5958A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5958A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5958A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5958A; -webkit-box-shadow: 1px 1px 3px 2px #A5958A; box-shadow: 1px 1px 3px 2px #A5958A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5958A; -webkit-box-shadow: 1px 1px 3px 2px #A5958A; box-shadow:1px 1px 3px 2px #A5958A;">
Div content here</div>
This text has color #A5958A on black background.
This text has color #A5958A on white background.
This text has black color on #A5958A background.
This text has white color on #A5958A background.