HEX: #50367B
RGB: (80,54,123)
#50367B contains mainly red and blue colors. Web safe color of #50367B is #663366 (or #636).
#50367B color RGB value is (80,54,123).
RGB: (80,54,123) (31%,21%,48%)
R 80 of 255 = 31%
G 54 of 255 = 21%
B 123 of 255 = 48%
R + G + B ~ 33%. #50367B is quite dark color.
R + G + B =
80 + 54 + 123 = 257 (100%)
R 80 of 257 ~ 31.13%
G 54 of 257 ~ 21.01%
B 123 of 257 ~ 47.86%
#50367B color CMYK value is (35,56,0,52).
CMYK: (35,56,0,52) C35M56Y0K52 (35%,56%,0%,52%) (0.35/0.56/0.00/0.52)
50 | 36 | 7B | |
---|---|---|---|
RGB | 80 | 54 | 123 |
HSL | 263° | 38.98% | 34.71% |
HSB/HSV | 263° | 56.10% | 48.24% |
CMYK | 34.96% | 56.10% | 0.00% |
51.76% |
HEX | 50 | 36 | 7B |
Decimal | 80 | 54 | 123 |
Binary | 1010000 | 110110 | 1111011 |
Octal | 120 | 66 | 173 |
Examples of css and html codes for elements with #50367B color. Also use rgb(80,54,123) instead hex code.
.myTextColor { color: #50367B; }
<p style="color:#50367B">This sample text font color is #50367B.</p>
This text font color is #50367B.
.myBgColor { background-color: #50367B; }
<div style="background-color:#50367B">Inner text</div>
This div background color is #50367B.
.myBorderColor { border: 1px solid #50367B; }
<div style="border:3px solid #50367B">Div</div>
This div border color is #50367B.
.myOpacity80 { color: #50367B; opacity: 0.8; }
<p style="color:#50367B;opacity:0.8;">80%</p>
Text with #50367B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50367B;}
<p style="text-shadow: 3px 3px 1px #50367B">Text here.</p>
This text has shadow with #50367B color.
.textShadow {text-shadow: 3px 3px 1px #50367B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50367B, 5px 5px 20px red">Text here.</p>
This text has shadow with #50367B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50367B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50367B, Direction=45, Strength=4)">Text</p>
This text has shadow with #50367B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50367B; -webkit-box-shadow: 1px 1px 3px 2px #50367B; box-shadow: 1px 1px 3px 2px #50367B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50367B; -webkit-box-shadow: 1px 1px 3px 2px #50367B; box-shadow:1px 1px 3px 2px #50367B;">
Div content here</div>
This text has color #50367B on black background.
This text has color #50367B on white background.
This text has black color on #50367B background.
This text has white color on #50367B background.