HEX: #A1887B
RGB: (161,136,123)
#A1887B contains red, green and blue colors in about the same proportion. Web safe color of #A1887B is #999966 (or #996).
#A1887B color RGB value is (161,136,123).
RGB: (161,136,123) (63%,53%,48%)
R 161 of 255 = 63%
G 136 of 255 = 53%
B 123 of 255 = 48%
R + G + B ~ 55%. #A1887B is middle color (not dark and not light).
R + G + B =
161 + 136 + 123 = 420 (100%)
R 161 of 420 ~ 38.33%
G 136 of 420 ~ 32.38%
B 123 of 420 ~ 29.29%
#A1887B color CMYK value is (0,16,24,37).
CMYK: (0,16,24,37) C0M16Y24K37 (0%,16%,24%,37%) (0.00/0.16/0.24/0.37)
A1 | 88 | 7B | |
---|---|---|---|
RGB | 161 | 136 | 123 |
HSL | 21° | 16.81% | 55.69% |
HSB/HSV | 21° | 23.60% | 63.14% |
CMYK | 0.00% | 15.53% | 23.60% |
36.86% |
HEX | A1 | 88 | 7B |
Decimal | 161 | 136 | 123 |
Binary | 10100001 | 10001000 | 1111011 |
Octal | 241 | 210 | 173 |
Examples of css and html codes for elements with #A1887B color. Also use rgb(161,136,123) instead hex code.
.myTextColor { color: #A1887B; }
<p style="color:#A1887B">This sample text font color is #A1887B.</p>
This text font color is #A1887B.
.myBgColor { background-color: #A1887B; }
<div style="background-color:#A1887B">Inner text</div>
This div background color is #A1887B.
.myBorderColor { border: 1px solid #A1887B; }
<div style="border:3px solid #A1887B">Div</div>
This div border color is #A1887B.
.myOpacity80 { color: #A1887B; opacity: 0.8; }
<p style="color:#A1887B;opacity:0.8;">80%</p>
Text with #A1887B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A1887B;}
<p style="text-shadow: 3px 3px 1px #A1887B">Text here.</p>
This text has shadow with #A1887B color.
.textShadow {text-shadow: 3px 3px 1px #A1887B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A1887B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A1887B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A1887B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A1887B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A1887B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A1887B; -webkit-box-shadow: 1px 1px 3px 2px #A1887B; box-shadow: 1px 1px 3px 2px #A1887B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A1887B; -webkit-box-shadow: 1px 1px 3px 2px #A1887B; box-shadow:1px 1px 3px 2px #A1887B;">
Div content here</div>
This text has color #A1887B on black background.
This text has color #A1887B on white background.
This text has black color on #A1887B background.
This text has white color on #A1887B background.