HEX: #EF94EC
RGB: (239,148,236)
#EF94EC contains mainly red and blue colors. Web safe color of #EF94EC is #FF99FF (or #F9F).
#EF94EC color RGB value is (239,148,236).
RGB: (239,148,236) (94%,58%,93%)
R 239 of 255 = 94%
G 148 of 255 = 58%
B 236 of 255 = 93%
R + G + B ~ 82%. #EF94EC is quite light color.
R + G + B =
239 + 148 + 236 = 623 (100%)
R 239 of 623 ~ 38.36%
G 148 of 623 ~ 23.76%
B 236 of 623 ~ 37.88%
#EF94EC color CMYK value is (0,38,1,6).
CMYK: (0,38,1,6) C0M38Y1K6 (0%,38%,1%,6%) (0.00/0.38/0.01/0.06)
EF | 94 | EC | |
---|---|---|---|
RGB | 239 | 148 | 236 |
HSL | 302° | 73.98% | 75.88% |
HSB/HSV | 302° | 38.08% | 93.73% |
CMYK | 0.00% | 38.08% | 1.26% |
6.27% |
HEX | EF | 94 | EC |
Decimal | 239 | 148 | 236 |
Binary | 11101111 | 10010100 | 11101100 |
Octal | 357 | 224 | 354 |
Examples of css and html codes for elements with #EF94EC color. Also use rgb(239,148,236) instead hex code.
.myTextColor { color: #EF94EC; }
<p style="color:#EF94EC">This sample text font color is #EF94EC.</p>
This text font color is #EF94EC.
.myBgColor { background-color: #EF94EC; }
<div style="background-color:#EF94EC">Inner text</div>
This div background color is #EF94EC.
.myBorderColor { border: 1px solid #EF94EC; }
<div style="border:3px solid #EF94EC">Div</div>
This div border color is #EF94EC.
.myOpacity80 { color: #EF94EC; opacity: 0.8; }
<p style="color:#EF94EC;opacity:0.8;">80%</p>
Text with #EF94EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF94EC;}
<p style="text-shadow: 3px 3px 1px #EF94EC">Text here.</p>
This text has shadow with #EF94EC color.
.textShadow {text-shadow: 3px 3px 1px #EF94EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF94EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF94EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF94EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF94EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF94EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF94EC; -webkit-box-shadow: 1px 1px 3px 2px #EF94EC; box-shadow: 1px 1px 3px 2px #EF94EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF94EC; -webkit-box-shadow: 1px 1px 3px 2px #EF94EC; box-shadow:1px 1px 3px 2px #EF94EC;">
Div content here</div>
This text has color #EF94EC on black background.
This text has color #EF94EC on white background.
This text has black color on #EF94EC background.
This text has white color on #EF94EC background.