HEX: #EF4EB5
RGB: (239,78,181)
#EF4EB5 contains mainly red and blue colors. Web safe color of #EF4EB5 is #FF66CC (or #F6C).
#EF4EB5 color RGB value is (239,78,181).
RGB: (239,78,181) (94%,31%,71%)
R 239 of 255 = 94%
G 78 of 255 = 31%
B 181 of 255 = 71%
R + G + B ~ 65%. #EF4EB5 is quite light color.
R + G + B =
239 + 78 + 181 = 498 (100%)
R 239 of 498 ~ 47.99%
G 78 of 498 ~ 15.66%
B 181 of 498 ~ 36.35%
#EF4EB5 color CMYK value is (0,67,24,6).
CMYK: (0,67,24,6) C0M67Y24K6 (0%,67%,24%,6%) (0.00/0.67/0.24/0.06)
EF | 4E | B5 | |
---|---|---|---|
RGB | 239 | 78 | 181 |
HSL | 322° | 83.42% | 62.16% |
HSB/HSV | 322° | 67.36% | 93.73% |
CMYK | 0.00% | 67.36% | 24.27% |
6.27% |
HEX | EF | 4E | B5 |
Decimal | 239 | 78 | 181 |
Binary | 11101111 | 1001110 | 10110101 |
Octal | 357 | 116 | 265 |
Examples of css and html codes for elements with #EF4EB5 color. Also use rgb(239,78,181) instead hex code.
.myTextColor { color: #EF4EB5; }
<p style="color:#EF4EB5">This sample text font color is #EF4EB5.</p>
This text font color is #EF4EB5.
.myBgColor { background-color: #EF4EB5; }
<div style="background-color:#EF4EB5">Inner text</div>
This div background color is #EF4EB5.
.myBorderColor { border: 1px solid #EF4EB5; }
<div style="border:3px solid #EF4EB5">Div</div>
This div border color is #EF4EB5.
.myOpacity80 { color: #EF4EB5; opacity: 0.8; }
<p style="color:#EF4EB5;opacity:0.8;">80%</p>
Text with #EF4EB5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF4EB5;}
<p style="text-shadow: 3px 3px 1px #EF4EB5">Text here.</p>
This text has shadow with #EF4EB5 color.
.textShadow {text-shadow: 3px 3px 1px #EF4EB5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF4EB5, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF4EB5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF4EB5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF4EB5, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF4EB5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF4EB5; -webkit-box-shadow: 1px 1px 3px 2px #EF4EB5; box-shadow: 1px 1px 3px 2px #EF4EB5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF4EB5; -webkit-box-shadow: 1px 1px 3px 2px #EF4EB5; box-shadow:1px 1px 3px 2px #EF4EB5;">
Div content here</div>
This text has color #EF4EB5 on black background.
This text has color #EF4EB5 on white background.
This text has black color on #EF4EB5 background.
This text has white color on #EF4EB5 background.