HEX: #A4885D
RGB: (164,136,93)
#A4885D contains mainly red and green colors. Web safe color of #A4885D is #999966 (or #996).
#A4885D color RGB value is (164,136,93).
RGB: (164,136,93) (64%,53%,36%)
R 164 of 255 = 64%
G 136 of 255 = 53%
B 93 of 255 = 36%
R + G + B ~ 51%. #A4885D is middle color (not dark and not light).
R + G + B =
164 + 136 + 93 = 393 (100%)
R 164 of 393 ~ 41.73%
G 136 of 393 ~ 34.61%
B 93 of 393 ~ 23.66%
#A4885D color CMYK value is (0,17,43,36).
CMYK: (0,17,43,36) C0M17Y43K36 (0%,17%,43%,36%) (0.00/0.17/0.43/0.36)
A4 | 88 | 5D | |
---|---|---|---|
RGB | 164 | 136 | 93 |
HSL | 36° | 28.06% | 50.39% |
HSB/HSV | 36° | 43.29% | 64.31% |
CMYK | 0.00% | 17.07% | 43.29% |
35.69% |
HEX | A4 | 88 | 5D |
Decimal | 164 | 136 | 93 |
Binary | 10100100 | 10001000 | 1011101 |
Octal | 244 | 210 | 135 |
Examples of css and html codes for elements with #A4885D color. Also use rgb(164,136,93) instead hex code.
.myTextColor { color: #A4885D; }
<p style="color:#A4885D">This sample text font color is #A4885D.</p>
This text font color is #A4885D.
.myBgColor { background-color: #A4885D; }
<div style="background-color:#A4885D">Inner text</div>
This div background color is #A4885D.
.myBorderColor { border: 1px solid #A4885D; }
<div style="border:3px solid #A4885D">Div</div>
This div border color is #A4885D.
.myOpacity80 { color: #A4885D; opacity: 0.8; }
<p style="color:#A4885D;opacity:0.8;">80%</p>
Text with #A4885D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4885D;}
<p style="text-shadow: 3px 3px 1px #A4885D">Text here.</p>
This text has shadow with #A4885D color.
.textShadow {text-shadow: 3px 3px 1px #A4885D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4885D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4885D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4885D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4885D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4885D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4885D; -webkit-box-shadow: 1px 1px 3px 2px #A4885D; box-shadow: 1px 1px 3px 2px #A4885D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4885D; -webkit-box-shadow: 1px 1px 3px 2px #A4885D; box-shadow:1px 1px 3px 2px #A4885D;">
Div content here</div>
This text has color #A4885D on black background.
This text has color #A4885D on white background.
This text has black color on #A4885D background.
This text has white color on #A4885D background.