HEX: #84474D
RGB: (132,71,77)
#84474D contains mainly red and blue colors. Web safe color of #84474D is #993333 (or #933).
#84474D color RGB value is (132,71,77).
RGB: (132,71,77) (52%,28%,30%)
R 132 of 255 = 52%
G 71 of 255 = 28%
B 77 of 255 = 30%
R + G + B ~ 37%. #84474D is quite dark color.
R + G + B =
132 + 71 + 77 = 280 (100%)
R 132 of 280 ~ 47.14%
G 71 of 280 ~ 25.36%
B 77 of 280 ~ 27.5%
#84474D color CMYK value is (0,46,42,48).
CMYK: (0,46,42,48) C0M46Y42K48 (0%,46%,42%,48%) (0.00/0.46/0.42/0.48)
84 | 47 | 4D | |
---|---|---|---|
RGB | 132 | 71 | 77 |
HSL | 354° | 30.05% | 39.80% |
HSB/HSV | 354° | 46.21% | 51.76% |
CMYK | 0.00% | 46.21% | 41.67% |
48.24% |
HEX | 84 | 47 | 4D |
Decimal | 132 | 71 | 77 |
Binary | 10000100 | 1000111 | 1001101 |
Octal | 204 | 107 | 115 |
Examples of css and html codes for elements with #84474D color. Also use rgb(132,71,77) instead hex code.
.myTextColor { color: #84474D; }
<p style="color:#84474D">This sample text font color is #84474D.</p>
This text font color is #84474D.
.myBgColor { background-color: #84474D; }
<div style="background-color:#84474D">Inner text</div>
This div background color is #84474D.
.myBorderColor { border: 1px solid #84474D; }
<div style="border:3px solid #84474D">Div</div>
This div border color is #84474D.
.myOpacity80 { color: #84474D; opacity: 0.8; }
<p style="color:#84474D;opacity:0.8;">80%</p>
Text with #84474D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84474D;}
<p style="text-shadow: 3px 3px 1px #84474D">Text here.</p>
This text has shadow with #84474D color.
.textShadow {text-shadow: 3px 3px 1px #84474D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84474D, 5px 5px 20px red">Text here.</p>
This text has shadow with #84474D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84474D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84474D, Direction=45, Strength=4)">Text</p>
This text has shadow with #84474D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84474D; -webkit-box-shadow: 1px 1px 3px 2px #84474D; box-shadow: 1px 1px 3px 2px #84474D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84474D; -webkit-box-shadow: 1px 1px 3px 2px #84474D; box-shadow:1px 1px 3px 2px #84474D;">
Div content here</div>
This text has color #84474D on black background.
This text has color #84474D on white background.
This text has black color on #84474D background.
This text has white color on #84474D background.