HEX: #504EE6
RGB: (80,78,230)
#504EE6 contains mainly blue color. Web safe color of #504EE6 is #6666CC (or #66C).
#504EE6 color RGB value is (80,78,230).
RGB: (80,78,230) (31%,31%,90%)
R 80 of 255 = 31%
G 78 of 255 = 31%
B 230 of 255 = 90%
R + G + B ~ 51%. #504EE6 is middle color (not dark and not light).
R + G + B =
80 + 78 + 230 = 388 (100%)
R 80 of 388 ~ 20.62%
G 78 of 388 ~ 20.1%
B 230 of 388 ~ 59.28%
#504EE6 color CMYK value is (65,66,0,10).
CMYK: (65,66,0,10) C65M66Y0K10 (65%,66%,0%,10%) (0.65/0.66/0.00/0.10)
50 | 4E | E6 | |
---|---|---|---|
RGB | 80 | 78 | 230 |
HSL | 241° | 75.25% | 60.39% |
HSB/HSV | 241° | 66.09% | 90.20% |
CMYK | 65.22% | 66.09% | 0.00% |
9.80% |
HEX | 50 | 4E | E6 |
Decimal | 80 | 78 | 230 |
Binary | 1010000 | 1001110 | 11100110 |
Octal | 120 | 116 | 346 |
Examples of css and html codes for elements with #504EE6 color. Also use rgb(80,78,230) instead hex code.
.myTextColor { color: #504EE6; }
<p style="color:#504EE6">This sample text font color is #504EE6.</p>
This text font color is #504EE6.
.myBgColor { background-color: #504EE6; }
<div style="background-color:#504EE6">Inner text</div>
This div background color is #504EE6.
.myBorderColor { border: 1px solid #504EE6; }
<div style="border:3px solid #504EE6">Div</div>
This div border color is #504EE6.
.myOpacity80 { color: #504EE6; opacity: 0.8; }
<p style="color:#504EE6;opacity:0.8;">80%</p>
Text with #504EE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #504EE6;}
<p style="text-shadow: 3px 3px 1px #504EE6">Text here.</p>
This text has shadow with #504EE6 color.
.textShadow {text-shadow: 3px 3px 1px #504EE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #504EE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #504EE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#504EE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#504EE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #504EE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #504EE6; -webkit-box-shadow: 1px 1px 3px 2px #504EE6; box-shadow: 1px 1px 3px 2px #504EE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #504EE6; -webkit-box-shadow: 1px 1px 3px 2px #504EE6; box-shadow:1px 1px 3px 2px #504EE6;">
Div content here</div>
This text has color #504EE6 on black background.
This text has color #504EE6 on white background.
This text has black color on #504EE6 background.
This text has white color on #504EE6 background.