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