HEX: #A48559
RGB: (164,133,89)
#A48559 contains mainly red and green colors. Web safe color of #A48559 is #999966 (or #996).
#A48559 color RGB value is (164,133,89).
RGB: (164,133,89) (64%,52%,35%)
R 164 of 255 = 64%
G 133 of 255 = 52%
B 89 of 255 = 35%
R + G + B ~ 50%. #A48559 is middle color (not dark and not light).
R + G + B =
164 + 133 + 89 = 386 (100%)
R 164 of 386 ~ 42.49%
G 133 of 386 ~ 34.46%
B 89 of 386 ~ 23.06%
#A48559 color CMYK value is (0,19,46,36).
CMYK: (0,19,46,36) C0M19Y46K36 (0%,19%,46%,36%) (0.00/0.19/0.46/0.36)
A4 | 85 | 59 | |
---|---|---|---|
RGB | 164 | 133 | 89 |
HSL | 35° | 29.64% | 49.61% |
HSB/HSV | 35° | 45.73% | 64.31% |
CMYK | 0.00% | 18.90% | 45.73% |
35.69% |
HEX | A4 | 85 | 59 |
Decimal | 164 | 133 | 89 |
Binary | 10100100 | 10000101 | 1011001 |
Octal | 244 | 205 | 131 |
Examples of css and html codes for elements with #A48559 color. Also use rgb(164,133,89) instead hex code.
.myTextColor { color: #A48559; }
<p style="color:#A48559">This sample text font color is #A48559.</p>
This text font color is #A48559.
.myBgColor { background-color: #A48559; }
<div style="background-color:#A48559">Inner text</div>
This div background color is #A48559.
.myBorderColor { border: 1px solid #A48559; }
<div style="border:3px solid #A48559">Div</div>
This div border color is #A48559.
.myOpacity80 { color: #A48559; opacity: 0.8; }
<p style="color:#A48559;opacity:0.8;">80%</p>
Text with #A48559 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48559;}
<p style="text-shadow: 3px 3px 1px #A48559">Text here.</p>
This text has shadow with #A48559 color.
.textShadow {text-shadow: 3px 3px 1px #A48559, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48559, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48559 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48559, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48559, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48559 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48559; -webkit-box-shadow: 1px 1px 3px 2px #A48559; box-shadow: 1px 1px 3px 2px #A48559; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48559; -webkit-box-shadow: 1px 1px 3px 2px #A48559; box-shadow:1px 1px 3px 2px #A48559;">
Div content here</div>
This text has color #A48559 on black background.
This text has color #A48559 on white background.
This text has black color on #A48559 background.
This text has white color on #A48559 background.