HEX: #4E60DB
RGB: (78,96,219)
#4E60DB contains mainly blue color. Web safe color of #4E60DB is #6666CC (or #66C).
#4E60DB color RGB value is (78,96,219).
RGB: (78,96,219) (31%,38%,86%)
R 78 of 255 = 31%
G 96 of 255 = 38%
B 219 of 255 = 86%
R + G + B ~ 52%. #4E60DB is middle color (not dark and not light).
R + G + B =
78 + 96 + 219 = 393 (100%)
R 78 of 393 ~ 19.85%
G 96 of 393 ~ 24.43%
B 219 of 393 ~ 55.73%
#4E60DB color CMYK value is (64,56,0,14).
CMYK: (64,56,0,14) C64M56Y0K14 (64%,56%,0%,14%) (0.64/0.56/0.00/0.14)
4E | 60 | DB | |
---|---|---|---|
RGB | 78 | 96 | 219 |
HSL | 232° | 66.20% | 58.24% |
HSB/HSV | 232° | 64.38% | 85.88% |
CMYK | 64.38% | 56.16% | 0.00% |
14.12% |
HEX | 4E | 60 | DB |
Decimal | 78 | 96 | 219 |
Binary | 1001110 | 1100000 | 11011011 |
Octal | 116 | 140 | 333 |
Examples of css and html codes for elements with #4E60DB color. Also use rgb(78,96,219) instead hex code.
.myTextColor { color: #4E60DB; }
<p style="color:#4E60DB">This sample text font color is #4E60DB.</p>
This text font color is #4E60DB.
.myBgColor { background-color: #4E60DB; }
<div style="background-color:#4E60DB">Inner text</div>
This div background color is #4E60DB.
.myBorderColor { border: 1px solid #4E60DB; }
<div style="border:3px solid #4E60DB">Div</div>
This div border color is #4E60DB.
.myOpacity80 { color: #4E60DB; opacity: 0.8; }
<p style="color:#4E60DB;opacity:0.8;">80%</p>
Text with #4E60DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4E60DB;}
<p style="text-shadow: 3px 3px 1px #4E60DB">Text here.</p>
This text has shadow with #4E60DB color.
.textShadow {text-shadow: 3px 3px 1px #4E60DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4E60DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #4E60DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4E60DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4E60DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #4E60DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4E60DB; -webkit-box-shadow: 1px 1px 3px 2px #4E60DB; box-shadow: 1px 1px 3px 2px #4E60DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4E60DB; -webkit-box-shadow: 1px 1px 3px 2px #4E60DB; box-shadow:1px 1px 3px 2px #4E60DB;">
Div content here</div>
This text has color #4E60DB on black background.
This text has color #4E60DB on white background.
This text has black color on #4E60DB background.
This text has white color on #4E60DB background.