HEX: #888D3E
RGB: (136,141,62)
#888D3E contains mainly red and green colors. Web safe color of #888D3E is #999933 (or #993).
#888D3E color RGB value is (136,141,62).
RGB: (136,141,62) (53%,55%,24%)
R 136 of 255 = 53%
G 141 of 255 = 55%
B 62 of 255 = 24%
R + G + B ~ 44%. #888D3E is middle color (not dark and not light).
R + G + B =
136 + 141 + 62 = 339 (100%)
R 136 of 339 ~ 40.12%
G 141 of 339 ~ 41.59%
B 62 of 339 ~ 18.29%
#888D3E color CMYK value is (4,0,56,45).
CMYK: (4,0,56,45) C4M0Y56K45 (4%,0%,56%,45%) (0.04/0.00/0.56/0.45)
88 | 8D | 3E | |
---|---|---|---|
RGB | 136 | 141 | 62 |
HSL | 64° | 38.92% | 39.80% |
HSB/HSV | 64° | 56.03% | 55.29% |
CMYK | 3.55% | 0.00% | 56.03% |
44.71% |
HEX | 88 | 8D | 3E |
Decimal | 136 | 141 | 62 |
Binary | 10001000 | 10001101 | 111110 |
Octal | 210 | 215 | 76 |
Examples of css and html codes for elements with #888D3E color. Also use rgb(136,141,62) instead hex code.
.myTextColor { color: #888D3E; }
<p style="color:#888D3E">This sample text font color is #888D3E.</p>
This text font color is #888D3E.
.myBgColor { background-color: #888D3E; }
<div style="background-color:#888D3E">Inner text</div>
This div background color is #888D3E.
.myBorderColor { border: 1px solid #888D3E; }
<div style="border:3px solid #888D3E">Div</div>
This div border color is #888D3E.
.myOpacity80 { color: #888D3E; opacity: 0.8; }
<p style="color:#888D3E;opacity:0.8;">80%</p>
Text with #888D3E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #888D3E;}
<p style="text-shadow: 3px 3px 1px #888D3E">Text here.</p>
This text has shadow with #888D3E color.
.textShadow {text-shadow: 3px 3px 1px #888D3E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #888D3E, 5px 5px 20px red">Text here.</p>
This text has shadow with #888D3E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#888D3E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#888D3E, Direction=45, Strength=4)">Text</p>
This text has shadow with #888D3E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #888D3E; -webkit-box-shadow: 1px 1px 3px 2px #888D3E; box-shadow: 1px 1px 3px 2px #888D3E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #888D3E; -webkit-box-shadow: 1px 1px 3px 2px #888D3E; box-shadow:1px 1px 3px 2px #888D3E;">
Div content here</div>
This text has color #888D3E on black background.
This text has color #888D3E on white background.
This text has black color on #888D3E background.
This text has white color on #888D3E background.