HEX: #E395E1
RGB: (227,149,225)
#E395E1 contains mainly red and blue colors. Web safe color of #E395E1 is #CC99CC (or #C9C).
#E395E1 color RGB value is (227,149,225).
RGB: (227,149,225) (89%,58%,88%)
R 227 of 255 = 89%
G 149 of 255 = 58%
B 225 of 255 = 88%
R + G + B ~ 78%. #E395E1 is quite light color.
R + G + B =
227 + 149 + 225 = 601 (100%)
R 227 of 601 ~ 37.77%
G 149 of 601 ~ 24.79%
B 225 of 601 ~ 37.44%
#E395E1 color CMYK value is (0,34,1,11).
CMYK: (0,34,1,11) C0M34Y1K11 (0%,34%,1%,11%) (0.00/0.34/0.01/0.11)
E3 | 95 | E1 | |
---|---|---|---|
RGB | 227 | 149 | 225 |
HSL | 302° | 58.21% | 73.73% |
HSB/HSV | 302° | 34.36% | 89.02% |
CMYK | 0.00% | 34.36% | 0.88% |
10.98% |
HEX | E3 | 95 | E1 |
Decimal | 227 | 149 | 225 |
Binary | 11100011 | 10010101 | 11100001 |
Octal | 343 | 225 | 341 |
Examples of css and html codes for elements with #E395E1 color. Also use rgb(227,149,225) instead hex code.
.myTextColor { color: #E395E1; }
<p style="color:#E395E1">This sample text font color is #E395E1.</p>
This text font color is #E395E1.
.myBgColor { background-color: #E395E1; }
<div style="background-color:#E395E1">Inner text</div>
This div background color is #E395E1.
.myBorderColor { border: 1px solid #E395E1; }
<div style="border:3px solid #E395E1">Div</div>
This div border color is #E395E1.
.myOpacity80 { color: #E395E1; opacity: 0.8; }
<p style="color:#E395E1;opacity:0.8;">80%</p>
Text with #E395E1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E395E1;}
<p style="text-shadow: 3px 3px 1px #E395E1">Text here.</p>
This text has shadow with #E395E1 color.
.textShadow {text-shadow: 3px 3px 1px #E395E1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E395E1, 5px 5px 20px red">Text here.</p>
This text has shadow with #E395E1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E395E1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E395E1, Direction=45, Strength=4)">Text</p>
This text has shadow with #E395E1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E395E1; -webkit-box-shadow: 1px 1px 3px 2px #E395E1; box-shadow: 1px 1px 3px 2px #E395E1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E395E1; -webkit-box-shadow: 1px 1px 3px 2px #E395E1; box-shadow:1px 1px 3px 2px #E395E1;">
Div content here</div>
This text has color #E395E1 on black background.
This text has color #E395E1 on white background.
This text has black color on #E395E1 background.
This text has white color on #E395E1 background.