HEX: #4E75BC
RGB: (78,117,188)
#4E75BC contains mainly blue color. Web safe color of #4E75BC is #6666CC (or #66C).
#4E75BC color RGB value is (78,117,188).
RGB: (78,117,188) (31%,46%,74%)
R 78 of 255 = 31%
G 117 of 255 = 46%
B 188 of 255 = 74%
R + G + B ~ 50%. #4E75BC is middle color (not dark and not light).
R + G + B =
78 + 117 + 188 = 383 (100%)
R 78 of 383 ~ 20.37%
G 117 of 383 ~ 30.55%
B 188 of 383 ~ 49.09%
#4E75BC color CMYK value is (59,38,0,26).
CMYK: (59,38,0,26) C59M38Y0K26 (59%,38%,0%,26%) (0.59/0.38/0.00/0.26)
4E | 75 | BC | |
---|---|---|---|
RGB | 78 | 117 | 188 |
HSL | 219° | 45.08% | 52.16% |
HSB/HSV | 219° | 58.51% | 73.73% |
CMYK | 58.51% | 37.77% | 0.00% |
26.27% |
HEX | 4E | 75 | BC |
Decimal | 78 | 117 | 188 |
Binary | 1001110 | 1110101 | 10111100 |
Octal | 116 | 165 | 274 |
Examples of css and html codes for elements with #4E75BC color. Also use rgb(78,117,188) instead hex code.
.myTextColor { color: #4E75BC; }
<p style="color:#4E75BC">This sample text font color is #4E75BC.</p>
This text font color is #4E75BC.
.myBgColor { background-color: #4E75BC; }
<div style="background-color:#4E75BC">Inner text</div>
This div background color is #4E75BC.
.myBorderColor { border: 1px solid #4E75BC; }
<div style="border:3px solid #4E75BC">Div</div>
This div border color is #4E75BC.
.myOpacity80 { color: #4E75BC; opacity: 0.8; }
<p style="color:#4E75BC;opacity:0.8;">80%</p>
Text with #4E75BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4E75BC;}
<p style="text-shadow: 3px 3px 1px #4E75BC">Text here.</p>
This text has shadow with #4E75BC color.
.textShadow {text-shadow: 3px 3px 1px #4E75BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4E75BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #4E75BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4E75BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4E75BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #4E75BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4E75BC; -webkit-box-shadow: 1px 1px 3px 2px #4E75BC; box-shadow: 1px 1px 3px 2px #4E75BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4E75BC; -webkit-box-shadow: 1px 1px 3px 2px #4E75BC; box-shadow:1px 1px 3px 2px #4E75BC;">
Div content here</div>
This text has color #4E75BC on black background.
This text has color #4E75BC on white background.
This text has black color on #4E75BC background.
This text has white color on #4E75BC background.