HEX: #835C1D
RGB: (131,92,29)
#835C1D contains mainly red and green colors. Web safe color of #835C1D is #996633 (or #963).
#835C1D color RGB value is (131,92,29).
RGB: (131,92,29) (51%,36%,11%)
R 131 of 255 = 51%
G 92 of 255 = 36%
B 29 of 255 = 11%
R + G + B ~ 33%. #835C1D is quite dark color.
R + G + B =
131 + 92 + 29 = 252 (100%)
R 131 of 252 ~ 51.98%
G 92 of 252 ~ 36.51%
B 29 of 252 ~ 11.51%
#835C1D color CMYK value is (0,30,78,49).
CMYK: (0,30,78,49) C0M30Y78K49 (0%,30%,78%,49%) (0.00/0.30/0.78/0.49)
83 | 5C | 1D | |
---|---|---|---|
RGB | 131 | 92 | 29 |
HSL | 37° | 63.75% | 31.37% |
HSB/HSV | 37° | 77.86% | 51.37% |
CMYK | 0.00% | 29.77% | 77.86% |
48.63% |
HEX | 83 | 5C | 1D |
Decimal | 131 | 92 | 29 |
Binary | 10000011 | 1011100 | 11101 |
Octal | 203 | 134 | 35 |
Examples of css and html codes for elements with #835C1D color. Also use rgb(131,92,29) instead hex code.
.myTextColor { color: #835C1D; }
<p style="color:#835C1D">This sample text font color is #835C1D.</p>
This text font color is #835C1D.
.myBgColor { background-color: #835C1D; }
<div style="background-color:#835C1D">Inner text</div>
This div background color is #835C1D.
.myBorderColor { border: 1px solid #835C1D; }
<div style="border:3px solid #835C1D">Div</div>
This div border color is #835C1D.
.myOpacity80 { color: #835C1D; opacity: 0.8; }
<p style="color:#835C1D;opacity:0.8;">80%</p>
Text with #835C1D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #835C1D;}
<p style="text-shadow: 3px 3px 1px #835C1D">Text here.</p>
This text has shadow with #835C1D color.
.textShadow {text-shadow: 3px 3px 1px #835C1D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #835C1D, 5px 5px 20px red">Text here.</p>
This text has shadow with #835C1D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#835C1D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#835C1D, Direction=45, Strength=4)">Text</p>
This text has shadow with #835C1D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #835C1D; -webkit-box-shadow: 1px 1px 3px 2px #835C1D; box-shadow: 1px 1px 3px 2px #835C1D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #835C1D; -webkit-box-shadow: 1px 1px 3px 2px #835C1D; box-shadow:1px 1px 3px 2px #835C1D;">
Div content here</div>
This text has color #835C1D on black background.
This text has color #835C1D on white background.
This text has black color on #835C1D background.
This text has white color on #835C1D background.