HEX: #E187E1
RGB: (225,135,225)
#E187E1 contains mainly red and blue colors. Web safe color of #E187E1 is #CC99CC (or #C9C).
#E187E1 color RGB value is (225,135,225).
RGB: (225,135,225) (88%,53%,88%)
R 225 of 255 = 88%
G 135 of 255 = 53%
B 225 of 255 = 88%
R + G + B ~ 76%. #E187E1 is quite light color.
R + G + B =
225 + 135 + 225 = 585 (100%)
R 225 of 585 ~ 38.46%
G 135 of 585 ~ 23.08%
B 225 of 585 ~ 38.46%
#E187E1 color CMYK value is (0,40,0,12).
CMYK: (0,40,0,12) C0M40Y0K12 (0%,40%,0%,12%) (0.00/0.40/0.00/0.12)
E1 | 87 | E1 | |
---|---|---|---|
RGB | 225 | 135 | 225 |
HSL | 300° | 60.00% | 70.59% |
HSB/HSV | 300° | 40.00% | 88.24% |
CMYK | 0.00% | 40.00% | 0.00% |
11.76% |
HEX | E1 | 87 | E1 |
Decimal | 225 | 135 | 225 |
Binary | 11100001 | 10000111 | 11100001 |
Octal | 341 | 207 | 341 |
Examples of css and html codes for elements with #E187E1 color. Also use rgb(225,135,225) instead hex code.
.myTextColor { color: #E187E1; }
<p style="color:#E187E1">This sample text font color is #E187E1.</p>
This text font color is #E187E1.
.myBgColor { background-color: #E187E1; }
<div style="background-color:#E187E1">Inner text</div>
This div background color is #E187E1.
.myBorderColor { border: 1px solid #E187E1; }
<div style="border:3px solid #E187E1">Div</div>
This div border color is #E187E1.
.myOpacity80 { color: #E187E1; opacity: 0.8; }
<p style="color:#E187E1;opacity:0.8;">80%</p>
Text with #E187E1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E187E1;}
<p style="text-shadow: 3px 3px 1px #E187E1">Text here.</p>
This text has shadow with #E187E1 color.
.textShadow {text-shadow: 3px 3px 1px #E187E1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E187E1, 5px 5px 20px red">Text here.</p>
This text has shadow with #E187E1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E187E1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E187E1, Direction=45, Strength=4)">Text</p>
This text has shadow with #E187E1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E187E1; -webkit-box-shadow: 1px 1px 3px 2px #E187E1; box-shadow: 1px 1px 3px 2px #E187E1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E187E1; -webkit-box-shadow: 1px 1px 3px 2px #E187E1; box-shadow:1px 1px 3px 2px #E187E1;">
Div content here</div>
This text has color #E187E1 on black background.
This text has color #E187E1 on white background.
This text has black color on #E187E1 background.
This text has white color on #E187E1 background.