HEX: #A5897B
RGB: (165,137,123)
#A5897B contains red, green and blue colors in about the same proportion. Web safe color of #A5897B is #999966 (or #996).
#A5897B color RGB value is (165,137,123).
RGB: (165,137,123) (65%,54%,48%)
R 165 of 255 = 65%
G 137 of 255 = 54%
B 123 of 255 = 48%
R + G + B ~ 56%. #A5897B is middle color (not dark and not light).
R + G + B =
165 + 137 + 123 = 425 (100%)
R 165 of 425 ~ 38.82%
G 137 of 425 ~ 32.24%
B 123 of 425 ~ 28.94%
#A5897B color CMYK value is (0,17,25,35).
CMYK: (0,17,25,35) C0M17Y25K35 (0%,17%,25%,35%) (0.00/0.17/0.25/0.35)
A5 | 89 | 7B | |
---|---|---|---|
RGB | 165 | 137 | 123 |
HSL | 20° | 18.92% | 56.47% |
HSB/HSV | 20° | 25.45% | 64.71% |
CMYK | 0.00% | 16.97% | 25.45% |
35.29% |
HEX | A5 | 89 | 7B |
Decimal | 165 | 137 | 123 |
Binary | 10100101 | 10001001 | 1111011 |
Octal | 245 | 211 | 173 |
Examples of css and html codes for elements with #A5897B color. Also use rgb(165,137,123) instead hex code.
.myTextColor { color: #A5897B; }
<p style="color:#A5897B">This sample text font color is #A5897B.</p>
This text font color is #A5897B.
.myBgColor { background-color: #A5897B; }
<div style="background-color:#A5897B">Inner text</div>
This div background color is #A5897B.
.myBorderColor { border: 1px solid #A5897B; }
<div style="border:3px solid #A5897B">Div</div>
This div border color is #A5897B.
.myOpacity80 { color: #A5897B; opacity: 0.8; }
<p style="color:#A5897B;opacity:0.8;">80%</p>
Text with #A5897B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5897B;}
<p style="text-shadow: 3px 3px 1px #A5897B">Text here.</p>
This text has shadow with #A5897B color.
.textShadow {text-shadow: 3px 3px 1px #A5897B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5897B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5897B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5897B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5897B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5897B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5897B; -webkit-box-shadow: 1px 1px 3px 2px #A5897B; box-shadow: 1px 1px 3px 2px #A5897B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5897B; -webkit-box-shadow: 1px 1px 3px 2px #A5897B; box-shadow:1px 1px 3px 2px #A5897B;">
Div content here</div>
This text has color #A5897B on black background.
This text has color #A5897B on white background.
This text has black color on #A5897B background.
This text has white color on #A5897B background.