HEX: #A48F5B
RGB: (164,143,91)
#A48F5B contains mainly red and green colors. Web safe color of #A48F5B is #999966 (or #996).
#A48F5B color RGB value is (164,143,91).
RGB: (164,143,91) (64%,56%,36%)
R 164 of 255 = 64%
G 143 of 255 = 56%
B 91 of 255 = 36%
R + G + B ~ 52%. #A48F5B is middle color (not dark and not light).
R + G + B =
164 + 143 + 91 = 398 (100%)
R 164 of 398 ~ 41.21%
G 143 of 398 ~ 35.93%
B 91 of 398 ~ 22.86%
#A48F5B color CMYK value is (0,13,45,36).
CMYK: (0,13,45,36) C0M13Y45K36 (0%,13%,45%,36%) (0.00/0.13/0.45/0.36)
A4 | 8F | 5B | |
---|---|---|---|
RGB | 164 | 143 | 91 |
HSL | 43° | 28.63% | 50.00% |
HSB/HSV | 43° | 44.51% | 64.31% |
CMYK | 0.00% | 12.80% | 44.51% |
35.69% |
HEX | A4 | 8F | 5B |
Decimal | 164 | 143 | 91 |
Binary | 10100100 | 10001111 | 1011011 |
Octal | 244 | 217 | 133 |
Examples of css and html codes for elements with #A48F5B color. Also use rgb(164,143,91) instead hex code.
.myTextColor { color: #A48F5B; }
<p style="color:#A48F5B">This sample text font color is #A48F5B.</p>
This text font color is #A48F5B.
.myBgColor { background-color: #A48F5B; }
<div style="background-color:#A48F5B">Inner text</div>
This div background color is #A48F5B.
.myBorderColor { border: 1px solid #A48F5B; }
<div style="border:3px solid #A48F5B">Div</div>
This div border color is #A48F5B.
.myOpacity80 { color: #A48F5B; opacity: 0.8; }
<p style="color:#A48F5B;opacity:0.8;">80%</p>
Text with #A48F5B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48F5B;}
<p style="text-shadow: 3px 3px 1px #A48F5B">Text here.</p>
This text has shadow with #A48F5B color.
.textShadow {text-shadow: 3px 3px 1px #A48F5B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48F5B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48F5B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48F5B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48F5B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48F5B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48F5B; -webkit-box-shadow: 1px 1px 3px 2px #A48F5B; box-shadow: 1px 1px 3px 2px #A48F5B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48F5B; -webkit-box-shadow: 1px 1px 3px 2px #A48F5B; box-shadow:1px 1px 3px 2px #A48F5B;">
Div content here</div>
This text has color #A48F5B on black background.
This text has color #A48F5B on white background.
This text has black color on #A48F5B background.
This text has white color on #A48F5B background.