HEX: #84702D
RGB: (132,112,45)
#84702D contains mainly red and green colors. Web safe color of #84702D is #996633 (or #963).
#84702D color RGB value is (132,112,45).
RGB: (132,112,45) (52%,44%,18%)
R 132 of 255 = 52%
G 112 of 255 = 44%
B 45 of 255 = 18%
R + G + B ~ 38%. #84702D is quite dark color.
R + G + B =
132 + 112 + 45 = 289 (100%)
R 132 of 289 ~ 45.67%
G 112 of 289 ~ 38.75%
B 45 of 289 ~ 15.57%
#84702D color CMYK value is (0,15,66,48).
CMYK: (0,15,66,48) C0M15Y66K48 (0%,15%,66%,48%) (0.00/0.15/0.66/0.48)
84 | 70 | 2D | |
---|---|---|---|
RGB | 132 | 112 | 45 |
HSL | 46° | 49.15% | 34.71% |
HSB/HSV | 46° | 65.91% | 51.76% |
CMYK | 0.00% | 15.15% | 65.91% |
48.24% |
HEX | 84 | 70 | 2D |
Decimal | 132 | 112 | 45 |
Binary | 10000100 | 1110000 | 101101 |
Octal | 204 | 160 | 55 |
Examples of css and html codes for elements with #84702D color. Also use rgb(132,112,45) instead hex code.
.myTextColor { color: #84702D; }
<p style="color:#84702D">This sample text font color is #84702D.</p>
This text font color is #84702D.
.myBgColor { background-color: #84702D; }
<div style="background-color:#84702D">Inner text</div>
This div background color is #84702D.
.myBorderColor { border: 1px solid #84702D; }
<div style="border:3px solid #84702D">Div</div>
This div border color is #84702D.
.myOpacity80 { color: #84702D; opacity: 0.8; }
<p style="color:#84702D;opacity:0.8;">80%</p>
Text with #84702D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84702D;}
<p style="text-shadow: 3px 3px 1px #84702D">Text here.</p>
This text has shadow with #84702D color.
.textShadow {text-shadow: 3px 3px 1px #84702D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84702D, 5px 5px 20px red">Text here.</p>
This text has shadow with #84702D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84702D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84702D, Direction=45, Strength=4)">Text</p>
This text has shadow with #84702D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84702D; -webkit-box-shadow: 1px 1px 3px 2px #84702D; box-shadow: 1px 1px 3px 2px #84702D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84702D; -webkit-box-shadow: 1px 1px 3px 2px #84702D; box-shadow:1px 1px 3px 2px #84702D;">
Div content here</div>
This text has color #84702D on black background.
This text has color #84702D on white background.
This text has black color on #84702D background.
This text has white color on #84702D background.