HEX: #E15DA1
RGB: (225,93,161)
#E15DA1 contains mainly red color. Web safe color of #E15DA1 is #CC6699 (or #C69).
#E15DA1 color RGB value is (225,93,161).
RGB: (225,93,161) (88%,36%,63%)
R 225 of 255 = 88%
G 93 of 255 = 36%
B 161 of 255 = 63%
R + G + B ~ 62%. #E15DA1 is quite light color.
R + G + B =
225 + 93 + 161 = 479 (100%)
R 225 of 479 ~ 46.97%
G 93 of 479 ~ 19.42%
B 161 of 479 ~ 33.61%
#E15DA1 color CMYK value is (0,59,28,12).
CMYK: (0,59,28,12) C0M59Y28K12 (0%,59%,28%,12%) (0.00/0.59/0.28/0.12)
E1 | 5D | A1 | |
---|---|---|---|
RGB | 225 | 93 | 161 |
HSL | 329° | 68.75% | 62.35% |
HSB/HSV | 329° | 58.67% | 88.24% |
CMYK | 0.00% | 58.67% | 28.44% |
11.76% |
HEX | E1 | 5D | A1 |
Decimal | 225 | 93 | 161 |
Binary | 11100001 | 1011101 | 10100001 |
Octal | 341 | 135 | 241 |
Examples of css and html codes for elements with #E15DA1 color. Also use rgb(225,93,161) instead hex code.
.myTextColor { color: #E15DA1; }
<p style="color:#E15DA1">This sample text font color is #E15DA1.</p>
This text font color is #E15DA1.
.myBgColor { background-color: #E15DA1; }
<div style="background-color:#E15DA1">Inner text</div>
This div background color is #E15DA1.
.myBorderColor { border: 1px solid #E15DA1; }
<div style="border:3px solid #E15DA1">Div</div>
This div border color is #E15DA1.
.myOpacity80 { color: #E15DA1; opacity: 0.8; }
<p style="color:#E15DA1;opacity:0.8;">80%</p>
Text with #E15DA1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E15DA1;}
<p style="text-shadow: 3px 3px 1px #E15DA1">Text here.</p>
This text has shadow with #E15DA1 color.
.textShadow {text-shadow: 3px 3px 1px #E15DA1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E15DA1, 5px 5px 20px red">Text here.</p>
This text has shadow with #E15DA1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E15DA1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E15DA1, Direction=45, Strength=4)">Text</p>
This text has shadow with #E15DA1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E15DA1; -webkit-box-shadow: 1px 1px 3px 2px #E15DA1; box-shadow: 1px 1px 3px 2px #E15DA1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E15DA1; -webkit-box-shadow: 1px 1px 3px 2px #E15DA1; box-shadow:1px 1px 3px 2px #E15DA1;">
Div content here</div>
This text has color #E15DA1 on black background.
This text has color #E15DA1 on white background.
This text has black color on #E15DA1 background.
This text has white color on #E15DA1 background.