HEX: #887D3F
RGB: (136,125,63)
#887D3F contains mainly red and green colors. Web safe color of #887D3F is #996633 (or #963).
#887D3F color RGB value is (136,125,63).
RGB: (136,125,63) (53%,49%,25%)
R 136 of 255 = 53%
G 125 of 255 = 49%
B 63 of 255 = 25%
R + G + B ~ 42%. #887D3F is middle color (not dark and not light).
R + G + B =
136 + 125 + 63 = 324 (100%)
R 136 of 324 ~ 41.98%
G 125 of 324 ~ 38.58%
B 63 of 324 ~ 19.44%
#887D3F color CMYK value is (0,8,54,47).
CMYK: (0,8,54,47) C0M8Y54K47 (0%,8%,54%,47%) (0.00/0.08/0.54/0.47)
88 | 7D | 3F | |
---|---|---|---|
RGB | 136 | 125 | 63 |
HSL | 51° | 36.68% | 39.02% |
HSB/HSV | 51° | 53.68% | 53.33% |
CMYK | 0.00% | 8.09% | 53.68% |
46.67% |
HEX | 88 | 7D | 3F |
Decimal | 136 | 125 | 63 |
Binary | 10001000 | 1111101 | 111111 |
Octal | 210 | 175 | 77 |
Examples of css and html codes for elements with #887D3F color. Also use rgb(136,125,63) instead hex code.
.myTextColor { color: #887D3F; }
<p style="color:#887D3F">This sample text font color is #887D3F.</p>
This text font color is #887D3F.
.myBgColor { background-color: #887D3F; }
<div style="background-color:#887D3F">Inner text</div>
This div background color is #887D3F.
.myBorderColor { border: 1px solid #887D3F; }
<div style="border:3px solid #887D3F">Div</div>
This div border color is #887D3F.
.myOpacity80 { color: #887D3F; opacity: 0.8; }
<p style="color:#887D3F;opacity:0.8;">80%</p>
Text with #887D3F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #887D3F;}
<p style="text-shadow: 3px 3px 1px #887D3F">Text here.</p>
This text has shadow with #887D3F color.
.textShadow {text-shadow: 3px 3px 1px #887D3F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #887D3F, 5px 5px 20px red">Text here.</p>
This text has shadow with #887D3F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#887D3F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#887D3F, Direction=45, Strength=4)">Text</p>
This text has shadow with #887D3F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #887D3F; -webkit-box-shadow: 1px 1px 3px 2px #887D3F; box-shadow: 1px 1px 3px 2px #887D3F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #887D3F; -webkit-box-shadow: 1px 1px 3px 2px #887D3F; box-shadow:1px 1px 3px 2px #887D3F;">
Div content here</div>
This text has color #887D3F on black background.
This text has color #887D3F on white background.
This text has black color on #887D3F background.
This text has white color on #887D3F background.