HEX: #50423F
RGB: (80,66,63)
#50423F contains red, green and blue colors in about the same proportion. Web safe color of #50423F is #663333 (or #633).
#50423F color RGB value is (80,66,63).
RGB: (80,66,63) (31%,26%,25%)
R 80 of 255 = 31%
G 66 of 255 = 26%
B 63 of 255 = 25%
R + G + B ~ 27%. #50423F is quite dark color.
R + G + B =
80 + 66 + 63 = 209 (100%)
R 80 of 209 ~ 38.28%
G 66 of 209 ~ 31.58%
B 63 of 209 ~ 30.14%
#50423F color CMYK value is (0,18,21,69).
CMYK: (0,18,21,69) C0M18Y21K69 (0%,18%,21%,69%) (0.00/0.18/0.21/0.69)
50 | 42 | 3F | |
---|---|---|---|
RGB | 80 | 66 | 63 |
HSL | 11° | 11.89% | 28.04% |
HSB/HSV | 11° | 21.25% | 31.37% |
CMYK | 0.00% | 17.50% | 21.25% |
68.63% |
HEX | 50 | 42 | 3F |
Decimal | 80 | 66 | 63 |
Binary | 1010000 | 1000010 | 111111 |
Octal | 120 | 102 | 77 |
Examples of css and html codes for elements with #50423F color. Also use rgb(80,66,63) instead hex code.
.myTextColor { color: #50423F; }
<p style="color:#50423F">This sample text font color is #50423F.</p>
This text font color is #50423F.
.myBgColor { background-color: #50423F; }
<div style="background-color:#50423F">Inner text</div>
This div background color is #50423F.
.myBorderColor { border: 1px solid #50423F; }
<div style="border:3px solid #50423F">Div</div>
This div border color is #50423F.
.myOpacity80 { color: #50423F; opacity: 0.8; }
<p style="color:#50423F;opacity:0.8;">80%</p>
Text with #50423F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50423F;}
<p style="text-shadow: 3px 3px 1px #50423F">Text here.</p>
This text has shadow with #50423F color.
.textShadow {text-shadow: 3px 3px 1px #50423F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50423F, 5px 5px 20px red">Text here.</p>
This text has shadow with #50423F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50423F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50423F, Direction=45, Strength=4)">Text</p>
This text has shadow with #50423F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50423F; -webkit-box-shadow: 1px 1px 3px 2px #50423F; box-shadow: 1px 1px 3px 2px #50423F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50423F; -webkit-box-shadow: 1px 1px 3px 2px #50423F; box-shadow:1px 1px 3px 2px #50423F;">
Div content here</div>
This text has color #50423F on black background.
This text has color #50423F on white background.
This text has black color on #50423F background.
This text has white color on #50423F background.