HEX: #EED4EA
RGB: (238,212,234)
#EED4EA contains red, green and blue colors in about the same proportion. Web safe color of #EED4EA is #FFCCFF (or #FCF).
#EED4EA color RGB value is (238,212,234).
RGB: (238,212,234) (93%,83%,92%)
R 238 of 255 = 93%
G 212 of 255 = 83%
B 234 of 255 = 92%
R + G + B ~ 89%. #EED4EA is light color.
R + G + B =
238 + 212 + 234 = 684 (100%)
R 238 of 684 ~ 34.8%
G 212 of 684 ~ 30.99%
B 234 of 684 ~ 34.21%
#EED4EA color CMYK value is (0,11,2,7).
CMYK: (0,11,2,7) C0M11Y2K7 (0%,11%,2%,7%) (0.00/0.11/0.02/0.07)
EE | D4 | EA | |
---|---|---|---|
RGB | 238 | 212 | 234 |
HSL | 309° | 43.33% | 88.24% |
HSB/HSV | 309° | 10.92% | 93.33% |
CMYK | 0.00% | 10.92% | 1.68% |
6.67% |
HEX | EE | D4 | EA |
Decimal | 238 | 212 | 234 |
Binary | 11101110 | 11010100 | 11101010 |
Octal | 356 | 324 | 352 |
Examples of css and html codes for elements with #EED4EA color. Also use rgb(238,212,234) instead hex code.
.myTextColor { color: #EED4EA; }
<p style="color:#EED4EA">This sample text font color is #EED4EA.</p>
This text font color is #EED4EA.
.myBgColor { background-color: #EED4EA; }
<div style="background-color:#EED4EA">Inner text</div>
This div background color is #EED4EA.
.myBorderColor { border: 1px solid #EED4EA; }
<div style="border:3px solid #EED4EA">Div</div>
This div border color is #EED4EA.
.myOpacity80 { color: #EED4EA; opacity: 0.8; }
<p style="color:#EED4EA;opacity:0.8;">80%</p>
Text with #EED4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED4EA;}
<p style="text-shadow: 3px 3px 1px #EED4EA">Text here.</p>
This text has shadow with #EED4EA color.
.textShadow {text-shadow: 3px 3px 1px #EED4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED4EA; -webkit-box-shadow: 1px 1px 3px 2px #EED4EA; box-shadow: 1px 1px 3px 2px #EED4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED4EA; -webkit-box-shadow: 1px 1px 3px 2px #EED4EA; box-shadow:1px 1px 3px 2px #EED4EA;">
Div content here</div>
This text has color #EED4EA on black background.
This text has color #EED4EA on white background.
This text has black color on #EED4EA background.
This text has white color on #EED4EA background.