HEX: #50344A
RGB: (80,52,74)
#50344A contains red, green and blue colors in about the same proportion. Web safe color of #50344A is #663333 (or #633).
#50344A color RGB value is (80,52,74).
RGB: (80,52,74) (31%,20%,29%)
R 80 of 255 = 31%
G 52 of 255 = 20%
B 74 of 255 = 29%
R + G + B ~ 27%. #50344A is quite dark color.
R + G + B =
80 + 52 + 74 = 206 (100%)
R 80 of 206 ~ 38.83%
G 52 of 206 ~ 25.24%
B 74 of 206 ~ 35.92%
#50344A color CMYK value is (0,35,7,69).
CMYK: (0,35,7,69) C0M35Y7K69 (0%,35%,7%,69%) (0.00/0.35/0.07/0.69)
50 | 34 | 4A | |
---|---|---|---|
RGB | 80 | 52 | 74 |
HSL | 313° | 21.21% | 25.88% |
HSB/HSV | 313° | 35.00% | 31.37% |
CMYK | 0.00% | 35.00% | 7.50% |
68.63% |
HEX | 50 | 34 | 4A |
Decimal | 80 | 52 | 74 |
Binary | 1010000 | 110100 | 1001010 |
Octal | 120 | 64 | 112 |
Examples of css and html codes for elements with #50344A color. Also use rgb(80,52,74) instead hex code.
.myTextColor { color: #50344A; }
<p style="color:#50344A">This sample text font color is #50344A.</p>
This text font color is #50344A.
.myBgColor { background-color: #50344A; }
<div style="background-color:#50344A">Inner text</div>
This div background color is #50344A.
.myBorderColor { border: 1px solid #50344A; }
<div style="border:3px solid #50344A">Div</div>
This div border color is #50344A.
.myOpacity80 { color: #50344A; opacity: 0.8; }
<p style="color:#50344A;opacity:0.8;">80%</p>
Text with #50344A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50344A;}
<p style="text-shadow: 3px 3px 1px #50344A">Text here.</p>
This text has shadow with #50344A color.
.textShadow {text-shadow: 3px 3px 1px #50344A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50344A, 5px 5px 20px red">Text here.</p>
This text has shadow with #50344A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50344A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50344A, Direction=45, Strength=4)">Text</p>
This text has shadow with #50344A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50344A; -webkit-box-shadow: 1px 1px 3px 2px #50344A; box-shadow: 1px 1px 3px 2px #50344A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50344A; -webkit-box-shadow: 1px 1px 3px 2px #50344A; box-shadow:1px 1px 3px 2px #50344A;">
Div content here</div>
This text has color #50344A on black background.
This text has color #50344A on white background.
This text has black color on #50344A background.
This text has white color on #50344A background.