HEX: #50775B
RGB: (80,119,91)
#50775B contains red, green and blue colors in about the same proportion. Web safe color of #50775B is #666666 (or #666).
#50775B color RGB value is (80,119,91).
RGB: (80,119,91) (31%,47%,36%)
R 80 of 255 = 31%
G 119 of 255 = 47%
B 91 of 255 = 36%
R + G + B ~ 38%. #50775B is quite dark color.
R + G + B =
80 + 119 + 91 = 290 (100%)
R 80 of 290 ~ 27.59%
G 119 of 290 ~ 41.03%
B 91 of 290 ~ 31.38%
#50775B color CMYK value is (33,0,24,53).
CMYK: (33,0,24,53) C33M0Y24K53 (33%,0%,24%,53%) (0.33/0.00/0.24/0.53)
50 | 77 | 5B | |
---|---|---|---|
RGB | 80 | 119 | 91 |
HSL | 137° | 19.60% | 39.02% |
HSB/HSV | 137° | 32.77% | 46.67% |
CMYK | 32.77% | 0.00% | 23.53% |
53.33% |
HEX | 50 | 77 | 5B |
Decimal | 80 | 119 | 91 |
Binary | 1010000 | 1110111 | 1011011 |
Octal | 120 | 167 | 133 |
Examples of css and html codes for elements with #50775B color. Also use rgb(80,119,91) instead hex code.
.myTextColor { color: #50775B; }
<p style="color:#50775B">This sample text font color is #50775B.</p>
This text font color is #50775B.
.myBgColor { background-color: #50775B; }
<div style="background-color:#50775B">Inner text</div>
This div background color is #50775B.
.myBorderColor { border: 1px solid #50775B; }
<div style="border:3px solid #50775B">Div</div>
This div border color is #50775B.
.myOpacity80 { color: #50775B; opacity: 0.8; }
<p style="color:#50775B;opacity:0.8;">80%</p>
Text with #50775B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50775B;}
<p style="text-shadow: 3px 3px 1px #50775B">Text here.</p>
This text has shadow with #50775B color.
.textShadow {text-shadow: 3px 3px 1px #50775B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50775B, 5px 5px 20px red">Text here.</p>
This text has shadow with #50775B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50775B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50775B, Direction=45, Strength=4)">Text</p>
This text has shadow with #50775B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50775B; -webkit-box-shadow: 1px 1px 3px 2px #50775B; box-shadow: 1px 1px 3px 2px #50775B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50775B; -webkit-box-shadow: 1px 1px 3px 2px #50775B; box-shadow:1px 1px 3px 2px #50775B;">
Div content here</div>
This text has color #50775B on black background.
This text has color #50775B on white background.
This text has black color on #50775B background.
This text has white color on #50775B background.