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