HEX: #50474C
RGB: (80,71,76)
#50474C contains red, green and blue colors in about the same proportion. #50474C ‘ nin web güvenlik rengi #663333 (ya da #633) dir.
#50474C color RGB value is (80,71,76).
RGB: (80,71,76) (31%,28%,30%)
R 80 of 255 = 31%
G 71 of 255 = 28%
B 76 of 255 = 30%
R + G + B ~ 30%. #50474C is quite dark color.
R + G + B =
80 + 71 + 76 = 227 (100%)
R 80 of 227 ~ 35.24%
G 71 of 227 ~ 31.28%
B 76 of 227 ~ 33.48%
#50474C rengi CMYK tonu (0,11,5,69).
CMYK: (0,11,5,69) C0M11Y5K69 (0%,11%,5%,69%) (0.00/0.11/0.05/0.69)
50 | 47 | 4C | |
---|---|---|---|
RGB | 80 | 71 | 76 |
HSL | 327° | 5.96% | 29.61% |
HSB/HSV | 327° | 11.25% | 31.37% |
CMYK | 0.00% | 11.25% | 5.00% |
68.63% |
HEX | 50 | 47 | 4C |
Decimal | 80 | 71 | 76 |
Binary | 1010000 | 1000111 | 1001100 |
Octal | 120 | 107 | 114 |
Examples of css and html codes for elements with #50474C color. Also use rgb(80,71,76) instead hex code.
.myTextColor { color: #50474C; }
<p style="color:#50474C">This sample text font color is #50474C.</p>
This text font color is #50474C.
.myBgColor { background-color: #50474C; }
<div style="background-color:#50474C">Inner text</div>
This div background color is #50474C.
.myBorderColor { border: 1px solid #50474C; }
<div style="border:3px solid #50474C">Div</div>
This div border color is #50474C.
.myOpacity80 { color: #50474C; opacity: 0.8; }
<p style="color:#50474C;opacity:0.8;">80%</p>
Text with #50474C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50474C;}
<p style="text-shadow: 3px 3px 1px #50474C">Text here.</p>
This text has shadow with #50474C color.
.textShadow {text-shadow: 3px 3px 1px #50474C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50474C, 5px 5px 20px red">Text here.</p>
This text has shadow with #50474C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50474C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50474C, Direction=45, Strength=4)">Text</p>
This text has shadow with #50474C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50474C; -webkit-box-shadow: 1px 1px 3px 2px #50474C; box-shadow: 1px 1px 3px 2px #50474C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50474C; -webkit-box-shadow: 1px 1px 3px 2px #50474C; box-shadow:1px 1px 3px 2px #50474C;">
Div content here</div>
This text has color #50474C on black background.
This text has color #50474C on white background.
This text has black color on #50474C background.
This text has white color on #50474C background.