HEX: #50231D
RGB: (80,35,29)
#50231D contains red, green and blue colors in about the same proportion. Web safe color of #50231D is #663333 (or #633).
#50231D color RGB value is (80,35,29).
RGB: (80,35,29) (31%,14%,11%)
R 80 of 255 = 31%
G 35 of 255 = 14%
B 29 of 255 = 11%
R + G + B ~ 19%. #50231D is dark color.
R + G + B =
80 + 35 + 29 = 144 (100%)
R 80 of 144 ~ 55.56%
G 35 of 144 ~ 24.31%
B 29 of 144 ~ 20.14%
#50231D color CMYK value is (0,56,64,69).
CMYK: (0,56,64,69) C0M56Y64K69 (0%,56%,64%,69%) (0.00/0.56/0.64/0.69)
50 | 23 | 1D | |
---|---|---|---|
RGB | 80 | 35 | 29 |
HSL | 7° | 46.79% | 21.37% |
HSB/HSV | 7° | 63.75% | 31.37% |
CMYK | 0.00% | 56.25% | 63.75% |
68.63% |
HEX | 50 | 23 | 1D |
Decimal | 80 | 35 | 29 |
Binary | 1010000 | 100011 | 11101 |
Octal | 120 | 43 | 35 |
Examples of css and html codes for elements with #50231D color. Also use rgb(80,35,29) instead hex code.
.myTextColor { color: #50231D; }
<p style="color:#50231D">This sample text font color is #50231D.</p>
This text font color is #50231D.
.myBgColor { background-color: #50231D; }
<div style="background-color:#50231D">Inner text</div>
This div background color is #50231D.
.myBorderColor { border: 1px solid #50231D; }
<div style="border:3px solid #50231D">Div</div>
This div border color is #50231D.
.myOpacity80 { color: #50231D; opacity: 0.8; }
<p style="color:#50231D;opacity:0.8;">80%</p>
Text with #50231D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50231D;}
<p style="text-shadow: 3px 3px 1px #50231D">Text here.</p>
This text has shadow with #50231D color.
.textShadow {text-shadow: 3px 3px 1px #50231D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50231D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50231D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50231D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50231D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50231D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50231D; -webkit-box-shadow: 1px 1px 3px 2px #50231D; box-shadow: 1px 1px 3px 2px #50231D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50231D; -webkit-box-shadow: 1px 1px 3px 2px #50231D; box-shadow:1px 1px 3px 2px #50231D;">
Div content here</div>
This text has color #50231D on black background.
This text has color #50231D on white background.
This text has black color on #50231D background.
This text has white color on #50231D background.