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