HEX: #50481E
RGB: (80,72,30)
#50481E contains red, green and blue colors in about the same proportion. Web safe color of #50481E is #663333 (or #633).
#50481E color RGB value is (80,72,30).
RGB: (80,72,30) (31%,28%,12%)
R 80 of 255 = 31%
G 72 of 255 = 28%
B 30 of 255 = 12%
R + G + B ~ 24%. #50481E is dark color.
R + G + B =
80 + 72 + 30 = 182 (100%)
R 80 of 182 ~ 43.96%
G 72 of 182 ~ 39.56%
B 30 of 182 ~ 16.48%
#50481E color CMYK value is (0,10,63,69).
CMYK: (0,10,63,69) C0M10Y63K69 (0%,10%,63%,69%) (0.00/0.10/0.63/0.69)
50 | 48 | 1E | |
---|---|---|---|
RGB | 80 | 72 | 30 |
HSL | 50° | 45.45% | 21.57% |
HSB/HSV | 50° | 62.50% | 31.37% |
CMYK | 0.00% | 10.00% | 62.50% |
68.63% |
HEX | 50 | 48 | 1E |
Decimal | 80 | 72 | 30 |
Binary | 1010000 | 1001000 | 11110 |
Octal | 120 | 110 | 36 |
Examples of css and html codes for elements with #50481E color. Also use rgb(80,72,30) instead hex code.
.myTextColor { color: #50481E; }
<p style="color:#50481E">This sample text font color is #50481E.</p>
This text font color is #50481E.
.myBgColor { background-color: #50481E; }
<div style="background-color:#50481E">Inner text</div>
This div background color is #50481E.
.myBorderColor { border: 1px solid #50481E; }
<div style="border:3px solid #50481E">Div</div>
This div border color is #50481E.
.myOpacity80 { color: #50481E; opacity: 0.8; }
<p style="color:#50481E;opacity:0.8;">80%</p>
Text with #50481E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50481E;}
<p style="text-shadow: 3px 3px 1px #50481E">Text here.</p>
This text has shadow with #50481E color.
.textShadow {text-shadow: 3px 3px 1px #50481E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50481E, 5px 5px 20px red">Text here.</p>
This text has shadow with #50481E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50481E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50481E, Direction=45, Strength=4)">Text</p>
This text has shadow with #50481E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50481E; -webkit-box-shadow: 1px 1px 3px 2px #50481E; box-shadow: 1px 1px 3px 2px #50481E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50481E; -webkit-box-shadow: 1px 1px 3px 2px #50481E; box-shadow:1px 1px 3px 2px #50481E;">
Div content here</div>
This text has color #50481E on black background.
This text has color #50481E on white background.
This text has black color on #50481E background.
This text has white color on #50481E background.