HEX: #EF4978
RGB: (239,73,120)
#EF4978 contains mainly red color. Web safe color of #EF4978 is #FF3366 (or #F36).
#EF4978 color RGB value is (239,73,120).
RGB: (239,73,120) (94%,29%,47%)
R 239 of 255 = 94%
G 73 of 255 = 29%
B 120 of 255 = 47%
R + G + B ~ 57%. #EF4978 is middle color (not dark and not light).
R + G + B =
239 + 73 + 120 = 432 (100%)
R 239 of 432 ~ 55.32%
G 73 of 432 ~ 16.9%
B 120 of 432 ~ 27.78%
#EF4978 color CMYK value is (0,69,50,6).
CMYK: (0,69,50,6) C0M69Y50K6 (0%,69%,50%,6%) (0.00/0.69/0.50/0.06)
EF | 49 | 78 | |
---|---|---|---|
RGB | 239 | 73 | 120 |
HSL | 343° | 83.84% | 61.18% |
HSB/HSV | 343° | 69.46% | 93.73% |
CMYK | 0.00% | 69.46% | 49.79% |
6.27% |
HEX | EF | 49 | 78 |
Decimal | 239 | 73 | 120 |
Binary | 11101111 | 1001001 | 1111000 |
Octal | 357 | 111 | 170 |
Examples of css and html codes for elements with #EF4978 color. Also use rgb(239,73,120) instead hex code.
.myTextColor { color: #EF4978; }
<p style="color:#EF4978">This sample text font color is #EF4978.</p>
This text font color is #EF4978.
.myBgColor { background-color: #EF4978; }
<div style="background-color:#EF4978">Inner text</div>
This div background color is #EF4978.
.myBorderColor { border: 1px solid #EF4978; }
<div style="border:3px solid #EF4978">Div</div>
This div border color is #EF4978.
.myOpacity80 { color: #EF4978; opacity: 0.8; }
<p style="color:#EF4978;opacity:0.8;">80%</p>
Text with #EF4978 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF4978;}
<p style="text-shadow: 3px 3px 1px #EF4978">Text here.</p>
This text has shadow with #EF4978 color.
.textShadow {text-shadow: 3px 3px 1px #EF4978, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF4978, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF4978 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF4978, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF4978, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF4978 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF4978; -webkit-box-shadow: 1px 1px 3px 2px #EF4978; box-shadow: 1px 1px 3px 2px #EF4978; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF4978; -webkit-box-shadow: 1px 1px 3px 2px #EF4978; box-shadow:1px 1px 3px 2px #EF4978;">
Div content here</div>
This text has color #EF4978 on black background.
This text has color #EF4978 on white background.
This text has black color on #EF4978 background.
This text has white color on #EF4978 background.