HEX: #50613F
RGB: (80,97,63)
#50613F contains red, green and blue colors in about the same proportion. Web safe color of #50613F is #666633 (or #663).
#50613F color RGB value is (80,97,63).
RGB: (80,97,63) (31%,38%,25%)
R 80 of 255 = 31%
G 97 of 255 = 38%
B 63 of 255 = 25%
R + G + B ~ 31%. #50613F is quite dark color.
R + G + B =
80 + 97 + 63 = 240 (100%)
R 80 of 240 ~ 33.33%
G 97 of 240 ~ 40.42%
B 63 of 240 ~ 26.25%
#50613F color CMYK value is (18,0,35,62).
CMYK: (18,0,35,62) C18M0Y35K62 (18%,0%,35%,62%) (0.18/0.00/0.35/0.62)
50 | 61 | 3F | |
---|---|---|---|
RGB | 80 | 97 | 63 |
HSL | 90° | 21.25% | 31.37% |
HSB/HSV | 90° | 35.05% | 38.04% |
CMYK | 17.53% | 0.00% | 35.05% |
61.96% |
HEX | 50 | 61 | 3F |
Decimal | 80 | 97 | 63 |
Binary | 1010000 | 1100001 | 111111 |
Octal | 120 | 141 | 77 |
Examples of css and html codes for elements with #50613F color. Also use rgb(80,97,63) instead hex code.
.myTextColor { color: #50613F; }
<p style="color:#50613F">This sample text font color is #50613F.</p>
This text font color is #50613F.
.myBgColor { background-color: #50613F; }
<div style="background-color:#50613F">Inner text</div>
This div background color is #50613F.
.myBorderColor { border: 1px solid #50613F; }
<div style="border:3px solid #50613F">Div</div>
This div border color is #50613F.
.myOpacity80 { color: #50613F; opacity: 0.8; }
<p style="color:#50613F;opacity:0.8;">80%</p>
Text with #50613F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50613F;}
<p style="text-shadow: 3px 3px 1px #50613F">Text here.</p>
This text has shadow with #50613F color.
.textShadow {text-shadow: 3px 3px 1px #50613F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50613F, 5px 5px 20px red">Text here.</p>
This text has shadow with #50613F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50613F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50613F, Direction=45, Strength=4)">Text</p>
This text has shadow with #50613F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50613F; -webkit-box-shadow: 1px 1px 3px 2px #50613F; box-shadow: 1px 1px 3px 2px #50613F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50613F; -webkit-box-shadow: 1px 1px 3px 2px #50613F; box-shadow:1px 1px 3px 2px #50613F;">
Div content here</div>
This text has color #50613F on black background.
This text has color #50613F on white background.
This text has black color on #50613F background.
This text has white color on #50613F background.