HEX: #EE8ED2
RGB: (238,142,210)
#EE8ED2 contains mainly red and blue colors. Web safe color of #EE8ED2 is #FF99CC (or #F9C).
#EE8ED2 color RGB value is (238,142,210).
RGB: (238,142,210) (93%,56%,82%)
R 238 of 255 = 93%
G 142 of 255 = 56%
B 210 of 255 = 82%
R + G + B ~ 77%. #EE8ED2 is quite light color.
R + G + B =
238 + 142 + 210 = 590 (100%)
R 238 of 590 ~ 40.34%
G 142 of 590 ~ 24.07%
B 210 of 590 ~ 35.59%
#EE8ED2 color CMYK value is (0,40,12,7).
CMYK: (0,40,12,7) C0M40Y12K7 (0%,40%,12%,7%) (0.00/0.40/0.12/0.07)
EE | 8E | D2 | |
---|---|---|---|
RGB | 238 | 142 | 210 |
HSL | 318° | 73.85% | 74.51% |
HSB/HSV | 318° | 40.34% | 93.33% |
CMYK | 0.00% | 40.34% | 11.76% |
6.67% |
HEX | EE | 8E | D2 |
Decimal | 238 | 142 | 210 |
Binary | 11101110 | 10001110 | 11010010 |
Octal | 356 | 216 | 322 |
Examples of css and html codes for elements with #EE8ED2 color. Also use rgb(238,142,210) instead hex code.
.myTextColor { color: #EE8ED2; }
<p style="color:#EE8ED2">This sample text font color is #EE8ED2.</p>
This text font color is #EE8ED2.
.myBgColor { background-color: #EE8ED2; }
<div style="background-color:#EE8ED2">Inner text</div>
This div background color is #EE8ED2.
.myBorderColor { border: 1px solid #EE8ED2; }
<div style="border:3px solid #EE8ED2">Div</div>
This div border color is #EE8ED2.
.myOpacity80 { color: #EE8ED2; opacity: 0.8; }
<p style="color:#EE8ED2;opacity:0.8;">80%</p>
Text with #EE8ED2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE8ED2;}
<p style="text-shadow: 3px 3px 1px #EE8ED2">Text here.</p>
This text has shadow with #EE8ED2 color.
.textShadow {text-shadow: 3px 3px 1px #EE8ED2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE8ED2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE8ED2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE8ED2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE8ED2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE8ED2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE8ED2; -webkit-box-shadow: 1px 1px 3px 2px #EE8ED2; box-shadow: 1px 1px 3px 2px #EE8ED2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE8ED2; -webkit-box-shadow: 1px 1px 3px 2px #EE8ED2; box-shadow:1px 1px 3px 2px #EE8ED2;">
Div content here</div>
This text has color #EE8ED2 on black background.
This text has color #EE8ED2 on white background.
This text has black color on #EE8ED2 background.
This text has white color on #EE8ED2 background.