HEX: #A48942
RGB: (164,137,66)
#A48942 contains mainly red and green colors. Web safe color of #A48942 is #999933 (or #993).
#A48942 color RGB value is (164,137,66).
RGB: (164,137,66) (64%,54%,26%)
R 164 of 255 = 64%
G 137 of 255 = 54%
B 66 of 255 = 26%
R + G + B ~ 48%. #A48942 is middle color (not dark and not light).
R + G + B =
164 + 137 + 66 = 367 (100%)
R 164 of 367 ~ 44.69%
G 137 of 367 ~ 37.33%
B 66 of 367 ~ 17.98%
#A48942 color CMYK value is (0,16,60,36).
CMYK: (0,16,60,36) C0M16Y60K36 (0%,16%,60%,36%) (0.00/0.16/0.60/0.36)
A4 | 89 | 42 | |
---|---|---|---|
RGB | 164 | 137 | 66 |
HSL | 43° | 42.61% | 45.10% |
HSB/HSV | 43° | 59.76% | 64.31% |
CMYK | 0.00% | 16.46% | 59.76% |
35.69% |
HEX | A4 | 89 | 42 |
Decimal | 164 | 137 | 66 |
Binary | 10100100 | 10001001 | 1000010 |
Octal | 244 | 211 | 102 |
Examples of css and html codes for elements with #A48942 color. Also use rgb(164,137,66) instead hex code.
.myTextColor { color: #A48942; }
<p style="color:#A48942">This sample text font color is #A48942.</p>
This text font color is #A48942.
.myBgColor { background-color: #A48942; }
<div style="background-color:#A48942">Inner text</div>
This div background color is #A48942.
.myBorderColor { border: 1px solid #A48942; }
<div style="border:3px solid #A48942">Div</div>
This div border color is #A48942.
.myOpacity80 { color: #A48942; opacity: 0.8; }
<p style="color:#A48942;opacity:0.8;">80%</p>
Text with #A48942 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48942;}
<p style="text-shadow: 3px 3px 1px #A48942">Text here.</p>
This text has shadow with #A48942 color.
.textShadow {text-shadow: 3px 3px 1px #A48942, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48942, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48942 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48942, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48942, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48942 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48942; -webkit-box-shadow: 1px 1px 3px 2px #A48942; box-shadow: 1px 1px 3px 2px #A48942; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48942; -webkit-box-shadow: 1px 1px 3px 2px #A48942; box-shadow:1px 1px 3px 2px #A48942;">
Div content here</div>
This text has color #A48942 on black background.
This text has color #A48942 on white background.
This text has black color on #A48942 background.
This text has white color on #A48942 background.