HEX: #864E13
RGB: (134,78,19)
#864E13 contains mainly red and green colors. Web safe color of #864E13 is #996600 (or #960).
#864E13 color RGB value is (134,78,19).
RGB: (134,78,19) (53%,31%,7%)
R 134 of 255 = 53%
G 78 of 255 = 31%
B 19 of 255 = 7%
R + G + B ~ 30%. #864E13 is quite dark color.
R + G + B =
134 + 78 + 19 = 231 (100%)
R 134 of 231 ~ 58.01%
G 78 of 231 ~ 33.77%
B 19 of 231 ~ 8.23%
#864E13 color CMYK value is (0,42,86,47).
CMYK: (0,42,86,47) C0M42Y86K47 (0%,42%,86%,47%) (0.00/0.42/0.86/0.47)
86 | 4E | 13 | |
---|---|---|---|
RGB | 134 | 78 | 19 |
HSL | 31° | 75.16% | 30.00% |
HSB/HSV | 31° | 85.82% | 52.55% |
CMYK | 0.00% | 41.79% | 85.82% |
47.45% |
HEX | 86 | 4E | 13 |
Decimal | 134 | 78 | 19 |
Binary | 10000110 | 1001110 | 10011 |
Octal | 206 | 116 | 23 |
Examples of css and html codes for elements with #864E13 color. Also use rgb(134,78,19) instead hex code.
.myTextColor { color: #864E13; }
<p style="color:#864E13">This sample text font color is #864E13.</p>
This text font color is #864E13.
.myBgColor { background-color: #864E13; }
<div style="background-color:#864E13">Inner text</div>
This div background color is #864E13.
.myBorderColor { border: 1px solid #864E13; }
<div style="border:3px solid #864E13">Div</div>
This div border color is #864E13.
.myOpacity80 { color: #864E13; opacity: 0.8; }
<p style="color:#864E13;opacity:0.8;">80%</p>
Text with #864E13 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #864E13;}
<p style="text-shadow: 3px 3px 1px #864E13">Text here.</p>
This text has shadow with #864E13 color.
.textShadow {text-shadow: 3px 3px 1px #864E13, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #864E13, 5px 5px 20px red">Text here.</p>
This text has shadow with #864E13 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#864E13, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#864E13, Direction=45, Strength=4)">Text</p>
This text has shadow with #864E13 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #864E13; -webkit-box-shadow: 1px 1px 3px 2px #864E13; box-shadow: 1px 1px 3px 2px #864E13; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #864E13; -webkit-box-shadow: 1px 1px 3px 2px #864E13; box-shadow:1px 1px 3px 2px #864E13;">
Div content here</div>
This text has color #864E13 on black background.
This text has color #864E13 on white background.
This text has black color on #864E13 background.
This text has white color on #864E13 background.