HEX: #EEDDE9
RGB: (238,221,233)
#EEDDE9 contains red, green and blue colors in about the same proportion. Web safe color of #EEDDE9 is #FFCCFF (or #FCF).
#EEDDE9 color RGB value is (238,221,233).
RGB: (238,221,233) (93%,87%,91%)
R 238 of 255 = 93%
G 221 of 255 = 87%
B 233 of 255 = 91%
R + G + B ~ 90%. #EEDDE9 is light color.
R + G + B =
238 + 221 + 233 = 692 (100%)
R 238 of 692 ~ 34.39%
G 221 of 692 ~ 31.94%
B 233 of 692 ~ 33.67%
#EEDDE9 color CMYK value is (0,7,2,7).
CMYK: (0,7,2,7) C0M7Y2K7 (0%,7%,2%,7%) (0.00/0.07/0.02/0.07)
EE | DD | E9 | |
---|---|---|---|
RGB | 238 | 221 | 233 |
HSL | 318° | 33.33% | 90.00% |
HSB/HSV | 318° | 7.14% | 93.33% |
CMYK | 0.00% | 7.14% | 2.10% |
6.67% |
HEX | EE | DD | E9 |
Decimal | 238 | 221 | 233 |
Binary | 11101110 | 11011101 | 11101001 |
Octal | 356 | 335 | 351 |
Examples of css and html codes for elements with #EEDDE9 color. Also use rgb(238,221,233) instead hex code.
.myTextColor { color: #EEDDE9; }
<p style="color:#EEDDE9">This sample text font color is #EEDDE9.</p>
This text font color is #EEDDE9.
.myBgColor { background-color: #EEDDE9; }
<div style="background-color:#EEDDE9">Inner text</div>
This div background color is #EEDDE9.
.myBorderColor { border: 1px solid #EEDDE9; }
<div style="border:3px solid #EEDDE9">Div</div>
This div border color is #EEDDE9.
.myOpacity80 { color: #EEDDE9; opacity: 0.8; }
<p style="color:#EEDDE9;opacity:0.8;">80%</p>
Text with #EEDDE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDDE9;}
<p style="text-shadow: 3px 3px 1px #EEDDE9">Text here.</p>
This text has shadow with #EEDDE9 color.
.textShadow {text-shadow: 3px 3px 1px #EEDDE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDDE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDDE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDDE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDDE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDDE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDDE9; -webkit-box-shadow: 1px 1px 3px 2px #EEDDE9; box-shadow: 1px 1px 3px 2px #EEDDE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDDE9; -webkit-box-shadow: 1px 1px 3px 2px #EEDDE9; box-shadow:1px 1px 3px 2px #EEDDE9;">
Div content here</div>
This text has color #EEDDE9 on black background.
This text has color #EEDDE9 on white background.
This text has black color on #EEDDE9 background.
This text has white color on #EEDDE9 background.