HEX: #50131D
RGB: (80,19,29)
#50131D contains mainly red and blue colors. Web safe color of #50131D is #660033 (or #603).
#50131D color RGB value is (80,19,29).
RGB: (80,19,29) (31%,7%,11%)
R 80 of 255 = 31%
G 19 of 255 = 7%
B 29 of 255 = 11%
R + G + B ~ 16%. #50131D is dark color.
R + G + B =
80 + 19 + 29 = 128 (100%)
R 80 of 128 ~ 62.5%
G 19 of 128 ~ 14.84%
B 29 of 128 ~ 22.66%
#50131D color CMYK value is (0,76,64,69).
CMYK: (0,76,64,69) C0M76Y64K69 (0%,76%,64%,69%) (0.00/0.76/0.64/0.69)
50 | 13 | 1D | |
---|---|---|---|
RGB | 80 | 19 | 29 |
HSL | 350° | 61.62% | 19.41% |
HSB/HSV | 350° | 76.25% | 31.37% |
CMYK | 0.00% | 76.25% | 63.75% |
68.63% |
HEX | 50 | 13 | 1D |
Decimal | 80 | 19 | 29 |
Binary | 1010000 | 10011 | 11101 |
Octal | 120 | 23 | 35 |
Examples of css and html codes for elements with #50131D color. Also use rgb(80,19,29) instead hex code.
.myTextColor { color: #50131D; }
<p style="color:#50131D">This sample text font color is #50131D.</p>
This text font color is #50131D.
.myBgColor { background-color: #50131D; }
<div style="background-color:#50131D">Inner text</div>
This div background color is #50131D.
.myBorderColor { border: 1px solid #50131D; }
<div style="border:3px solid #50131D">Div</div>
This div border color is #50131D.
.myOpacity80 { color: #50131D; opacity: 0.8; }
<p style="color:#50131D;opacity:0.8;">80%</p>
Text with #50131D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50131D;}
<p style="text-shadow: 3px 3px 1px #50131D">Text here.</p>
This text has shadow with #50131D color.
.textShadow {text-shadow: 3px 3px 1px #50131D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50131D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50131D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50131D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50131D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50131D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50131D; -webkit-box-shadow: 1px 1px 3px 2px #50131D; box-shadow: 1px 1px 3px 2px #50131D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50131D; -webkit-box-shadow: 1px 1px 3px 2px #50131D; box-shadow:1px 1px 3px 2px #50131D;">
Div content here</div>
This text has color #50131D on black background.
This text has color #50131D on white background.
This text has black color on #50131D background.
This text has white color on #50131D background.