HEX: #E394ED
RGB: (227,148,237)
#E394ED contains mainly red and blue colors. Web safe color of #E394ED is #CC99FF (or #C9F).
#E394ED color RGB value is (227,148,237).
RGB: (227,148,237) (89%,58%,93%)
R 227 of 255 = 89%
G 148 of 255 = 58%
B 237 of 255 = 93%
R + G + B ~ 80%. #E394ED is quite light color.
R + G + B =
227 + 148 + 237 = 612 (100%)
R 227 of 612 ~ 37.09%
G 148 of 612 ~ 24.18%
B 237 of 612 ~ 38.73%
#E394ED color CMYK value is (4,38,0,7).
CMYK: (4,38,0,7) C4M38Y0K7 (4%,38%,0%,7%) (0.04/0.38/0.00/0.07)
E3 | 94 | ED | |
---|---|---|---|
RGB | 227 | 148 | 237 |
HSL | 293° | 71.20% | 75.49% |
HSB/HSV | 293° | 37.55% | 92.94% |
CMYK | 4.22% | 37.55% | 0.00% |
7.06% |
HEX | E3 | 94 | ED |
Decimal | 227 | 148 | 237 |
Binary | 11100011 | 10010100 | 11101101 |
Octal | 343 | 224 | 355 |
Examples of css and html codes for elements with #E394ED color. Also use rgb(227,148,237) instead hex code.
.myTextColor { color: #E394ED; }
<p style="color:#E394ED">This sample text font color is #E394ED.</p>
This text font color is #E394ED.
.myBgColor { background-color: #E394ED; }
<div style="background-color:#E394ED">Inner text</div>
This div background color is #E394ED.
.myBorderColor { border: 1px solid #E394ED; }
<div style="border:3px solid #E394ED">Div</div>
This div border color is #E394ED.
.myOpacity80 { color: #E394ED; opacity: 0.8; }
<p style="color:#E394ED;opacity:0.8;">80%</p>
Text with #E394ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E394ED;}
<p style="text-shadow: 3px 3px 1px #E394ED">Text here.</p>
This text has shadow with #E394ED color.
.textShadow {text-shadow: 3px 3px 1px #E394ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E394ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #E394ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E394ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E394ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #E394ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E394ED; -webkit-box-shadow: 1px 1px 3px 2px #E394ED; box-shadow: 1px 1px 3px 2px #E394ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E394ED; -webkit-box-shadow: 1px 1px 3px 2px #E394ED; box-shadow:1px 1px 3px 2px #E394ED;">
Div content here</div>
This text has color #E394ED on black background.
This text has color #E394ED on white background.
This text has black color on #E394ED background.
This text has white color on #E394ED background.