HEX: #83471D
RGB: (131,71,29)
#83471D contains mainly red color. Web safe color of #83471D is #993333 (or #933).
#83471D color RGB value is (131,71,29).
RGB: (131,71,29) (51%,28%,11%)
R 131 of 255 = 51%
G 71 of 255 = 28%
B 29 of 255 = 11%
R + G + B ~ 30%. #83471D is quite dark color.
R + G + B =
131 + 71 + 29 = 231 (100%)
R 131 of 231 ~ 56.71%
G 71 of 231 ~ 30.74%
B 29 of 231 ~ 12.55%
#83471D color CMYK value is (0,46,78,49).
CMYK: (0,46,78,49) C0M46Y78K49 (0%,46%,78%,49%) (0.00/0.46/0.78/0.49)
83 | 47 | 1D | |
---|---|---|---|
RGB | 131 | 71 | 29 |
HSL | 25° | 63.75% | 31.37% |
HSB/HSV | 25° | 77.86% | 51.37% |
CMYK | 0.00% | 45.80% | 77.86% |
48.63% |
HEX | 83 | 47 | 1D |
Decimal | 131 | 71 | 29 |
Binary | 10000011 | 1000111 | 11101 |
Octal | 203 | 107 | 35 |
Examples of css and html codes for elements with #83471D color. Also use rgb(131,71,29) instead hex code.
.myTextColor { color: #83471D; }
<p style="color:#83471D">This sample text font color is #83471D.</p>
This text font color is #83471D.
.myBgColor { background-color: #83471D; }
<div style="background-color:#83471D">Inner text</div>
This div background color is #83471D.
.myBorderColor { border: 1px solid #83471D; }
<div style="border:3px solid #83471D">Div</div>
This div border color is #83471D.
.myOpacity80 { color: #83471D; opacity: 0.8; }
<p style="color:#83471D;opacity:0.8;">80%</p>
Text with #83471D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83471D;}
<p style="text-shadow: 3px 3px 1px #83471D">Text here.</p>
This text has shadow with #83471D color.
.textShadow {text-shadow: 3px 3px 1px #83471D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83471D, 5px 5px 20px red">Text here.</p>
This text has shadow with #83471D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83471D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83471D, Direction=45, Strength=4)">Text</p>
This text has shadow with #83471D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83471D; -webkit-box-shadow: 1px 1px 3px 2px #83471D; box-shadow: 1px 1px 3px 2px #83471D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83471D; -webkit-box-shadow: 1px 1px 3px 2px #83471D; box-shadow:1px 1px 3px 2px #83471D;">
Div content here</div>
This text has color #83471D on black background.
This text has color #83471D on white background.
This text has black color on #83471D background.
This text has white color on #83471D background.