HEX: #A3888D
RGB: (163,136,141)
#A3888D contains red, green and blue colors in about the same proportion. Web safe color of #A3888D is #999999 (or #999).
#A3888D color RGB value is (163,136,141).
RGB: (163,136,141) (64%,53%,55%)
R 163 of 255 = 64%
G 136 of 255 = 53%
B 141 of 255 = 55%
R + G + B ~ 57%. #A3888D is middle color (not dark and not light).
R + G + B =
163 + 136 + 141 = 440 (100%)
R 163 of 440 ~ 37.05%
G 136 of 440 ~ 30.91%
B 141 of 440 ~ 32.05%
#A3888D color CMYK value is (0,17,13,36).
CMYK: (0,17,13,36) C0M17Y13K36 (0%,17%,13%,36%) (0.00/0.17/0.13/0.36)
A3 | 88 | 8D | |
---|---|---|---|
RGB | 163 | 136 | 141 |
HSL | 349° | 12.80% | 58.63% |
HSB/HSV | 349° | 16.56% | 63.92% |
CMYK | 0.00% | 16.56% | 13.50% |
36.08% |
HEX | A3 | 88 | 8D |
Decimal | 163 | 136 | 141 |
Binary | 10100011 | 10001000 | 10001101 |
Octal | 243 | 210 | 215 |
Examples of css and html codes for elements with #A3888D color. Also use rgb(163,136,141) instead hex code.
.myTextColor { color: #A3888D; }
<p style="color:#A3888D">This sample text font color is #A3888D.</p>
This text font color is #A3888D.
.myBgColor { background-color: #A3888D; }
<div style="background-color:#A3888D">Inner text</div>
This div background color is #A3888D.
.myBorderColor { border: 1px solid #A3888D; }
<div style="border:3px solid #A3888D">Div</div>
This div border color is #A3888D.
.myOpacity80 { color: #A3888D; opacity: 0.8; }
<p style="color:#A3888D;opacity:0.8;">80%</p>
Text with #A3888D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A3888D;}
<p style="text-shadow: 3px 3px 1px #A3888D">Text here.</p>
This text has shadow with #A3888D color.
.textShadow {text-shadow: 3px 3px 1px #A3888D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A3888D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A3888D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A3888D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A3888D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A3888D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A3888D; -webkit-box-shadow: 1px 1px 3px 2px #A3888D; box-shadow: 1px 1px 3px 2px #A3888D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A3888D; -webkit-box-shadow: 1px 1px 3px 2px #A3888D; box-shadow:1px 1px 3px 2px #A3888D;">
Div content here</div>
This text has color #A3888D on black background.
This text has color #A3888D on white background.
This text has black color on #A3888D background.
This text has white color on #A3888D background.