HEX: #8C744D
RGB: (140,116,77)
#8C744D contains mainly red and green colors. Web safe color of #8C744D is #996633 (or #963).
#8C744D color RGB value is (140,116,77).
RGB: (140,116,77) (55%,45%,30%)
R 140 of 255 = 55%
G 116 of 255 = 45%
B 77 of 255 = 30%
R + G + B ~ 43%. #8C744D is middle color (not dark and not light).
R + G + B =
140 + 116 + 77 = 333 (100%)
R 140 of 333 ~ 42.04%
G 116 of 333 ~ 34.83%
B 77 of 333 ~ 23.12%
#8C744D color CMYK value is (0,17,45,45).
CMYK: (0,17,45,45) C0M17Y45K45 (0%,17%,45%,45%) (0.00/0.17/0.45/0.45)
8C | 74 | 4D | |
---|---|---|---|
RGB | 140 | 116 | 77 |
HSL | 37° | 29.03% | 42.55% |
HSB/HSV | 37° | 45.00% | 54.90% |
CMYK | 0.00% | 17.14% | 45.00% |
45.10% |
HEX | 8C | 74 | 4D |
Decimal | 140 | 116 | 77 |
Binary | 10001100 | 1110100 | 1001101 |
Octal | 214 | 164 | 115 |
Examples of css and html codes for elements with #8C744D color. Also use rgb(140,116,77) instead hex code.
.myTextColor { color: #8C744D; }
<p style="color:#8C744D">This sample text font color is #8C744D.</p>
This text font color is #8C744D.
.myBgColor { background-color: #8C744D; }
<div style="background-color:#8C744D">Inner text</div>
This div background color is #8C744D.
.myBorderColor { border: 1px solid #8C744D; }
<div style="border:3px solid #8C744D">Div</div>
This div border color is #8C744D.
.myOpacity80 { color: #8C744D; opacity: 0.8; }
<p style="color:#8C744D;opacity:0.8;">80%</p>
Text with #8C744D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8C744D;}
<p style="text-shadow: 3px 3px 1px #8C744D">Text here.</p>
This text has shadow with #8C744D color.
.textShadow {text-shadow: 3px 3px 1px #8C744D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8C744D, 5px 5px 20px red">Text here.</p>
This text has shadow with #8C744D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8C744D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8C744D, Direction=45, Strength=4)">Text</p>
This text has shadow with #8C744D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8C744D; -webkit-box-shadow: 1px 1px 3px 2px #8C744D; box-shadow: 1px 1px 3px 2px #8C744D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8C744D; -webkit-box-shadow: 1px 1px 3px 2px #8C744D; box-shadow:1px 1px 3px 2px #8C744D;">
Div content here</div>
This text has color #8C744D on black background.
This text has color #8C744D on white background.
This text has black color on #8C744D background.
This text has white color on #8C744D background.