HEX: #EE5DE1
RGB: (238,93,225)
#EE5DE1 contains mainly red and blue colors. Web safe color of #EE5DE1 is #FF66CC (or #F6C).
#EE5DE1 color RGB value is (238,93,225).
RGB: (238,93,225) (93%,36%,88%)
R 238 of 255 = 93%
G 93 of 255 = 36%
B 225 of 255 = 88%
R + G + B ~ 72%. #EE5DE1 is quite light color.
R + G + B =
238 + 93 + 225 = 556 (100%)
R 238 of 556 ~ 42.81%
G 93 of 556 ~ 16.73%
B 225 of 556 ~ 40.47%
#EE5DE1 color CMYK value is (0,61,5,7).
CMYK: (0,61,5,7) C0M61Y5K7 (0%,61%,5%,7%) (0.00/0.61/0.05/0.07)
EE | 5D | E1 | |
---|---|---|---|
RGB | 238 | 93 | 225 |
HSL | 305° | 81.01% | 64.90% |
HSB/HSV | 305° | 60.92% | 93.33% |
CMYK | 0.00% | 60.92% | 5.46% |
6.67% |
HEX | EE | 5D | E1 |
Decimal | 238 | 93 | 225 |
Binary | 11101110 | 1011101 | 11100001 |
Octal | 356 | 135 | 341 |
Examples of css and html codes for elements with #EE5DE1 color. Also use rgb(238,93,225) instead hex code.
.myTextColor { color: #EE5DE1; }
<p style="color:#EE5DE1">This sample text font color is #EE5DE1.</p>
This text font color is #EE5DE1.
.myBgColor { background-color: #EE5DE1; }
<div style="background-color:#EE5DE1">Inner text</div>
This div background color is #EE5DE1.
.myBorderColor { border: 1px solid #EE5DE1; }
<div style="border:3px solid #EE5DE1">Div</div>
This div border color is #EE5DE1.
.myOpacity80 { color: #EE5DE1; opacity: 0.8; }
<p style="color:#EE5DE1;opacity:0.8;">80%</p>
Text with #EE5DE1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE5DE1;}
<p style="text-shadow: 3px 3px 1px #EE5DE1">Text here.</p>
This text has shadow with #EE5DE1 color.
.textShadow {text-shadow: 3px 3px 1px #EE5DE1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE5DE1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE5DE1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE5DE1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE5DE1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE5DE1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE5DE1; -webkit-box-shadow: 1px 1px 3px 2px #EE5DE1; box-shadow: 1px 1px 3px 2px #EE5DE1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE5DE1; -webkit-box-shadow: 1px 1px 3px 2px #EE5DE1; box-shadow:1px 1px 3px 2px #EE5DE1;">
Div content here</div>
This text has color #EE5DE1 on black background.
This text has color #EE5DE1 on white background.
This text has black color on #EE5DE1 background.
This text has white color on #EE5DE1 background.