HEX: #50061F
RGB: (80,6,31)
#50061F contains mainly red and blue colors. Web safe color of #50061F is #660033 (or #603).
#50061F color RGB value is (80,6,31).
RGB: (80,6,31) (31%,2%,12%)
R 80 of 255 = 31%
G 6 of 255 = 2%
B 31 of 255 = 12%
R + G + B ~ 15%. #50061F is dark color.
R + G + B =
80 + 6 + 31 = 117 (100%)
R 80 of 117 ~ 68.38%
G 6 of 117 ~ 5.13%
B 31 of 117 ~ 26.5%
#50061F color CMYK value is (0,93,61,69).
CMYK: (0,93,61,69) C0M93Y61K69 (0%,93%,61%,69%) (0.00/0.93/0.61/0.69)
50 | 06 | 1F | |
---|---|---|---|
RGB | 80 | 6 | 31 |
HSL | 340° | 86.05% | 16.86% |
HSB/HSV | 340° | 92.50% | 31.37% |
CMYK | 0.00% | 92.50% | 61.25% |
68.63% |
HEX | 50 | 06 | 1F |
Decimal | 80 | 6 | 31 |
Binary | 1010000 | 110 | 11111 |
Octal | 120 | 6 | 37 |
Examples of css and html codes for elements with #50061F color. Also use rgb(80,6,31) instead hex code.
.myTextColor { color: #50061F; }
<p style="color:#50061F">This sample text font color is #50061F.</p>
This text font color is #50061F.
.myBgColor { background-color: #50061F; }
<div style="background-color:#50061F">Inner text</div>
This div background color is #50061F.
.myBorderColor { border: 1px solid #50061F; }
<div style="border:3px solid #50061F">Div</div>
This div border color is #50061F.
.myOpacity80 { color: #50061F; opacity: 0.8; }
<p style="color:#50061F;opacity:0.8;">80%</p>
Text with #50061F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50061F;}
<p style="text-shadow: 3px 3px 1px #50061F">Text here.</p>
This text has shadow with #50061F color.
.textShadow {text-shadow: 3px 3px 1px #50061F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50061F, 5px 5px 20px red">Text here.</p>
This text has shadow with #50061F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50061F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50061F, Direction=45, Strength=4)">Text</p>
This text has shadow with #50061F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50061F; -webkit-box-shadow: 1px 1px 3px 2px #50061F; box-shadow: 1px 1px 3px 2px #50061F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50061F; -webkit-box-shadow: 1px 1px 3px 2px #50061F; box-shadow:1px 1px 3px 2px #50061F;">
Div content here</div>
This text has color #50061F on black background.
This text has color #50061F on white background.
This text has black color on #50061F background.
This text has white color on #50061F background.