HEX: #EEDFEE
RGB: (238,223,238)
#EEDFEE contains red, green and blue colors in about the same proportion. Web safe color of #EEDFEE is #FFCCFF (or #FCF).
#EEDFEE color RGB value is (238,223,238).
RGB: (238,223,238) (93%,87%,93%)
R 238 of 255 = 93%
G 223 of 255 = 87%
B 238 of 255 = 93%
R + G + B ~ 91%. #EEDFEE is light color.
R + G + B =
238 + 223 + 238 = 699 (100%)
R 238 of 699 ~ 34.05%
G 223 of 699 ~ 31.9%
B 238 of 699 ~ 34.05%
#EEDFEE color CMYK value is (0,6,0,7).
CMYK: (0,6,0,7) C0M6Y0K7 (0%,6%,0%,7%) (0.00/0.06/0.00/0.07)
EE | DF | EE | |
---|---|---|---|
RGB | 238 | 223 | 238 |
HSL | 300° | 30.61% | 90.39% |
HSB/HSV | 300° | 6.30% | 93.33% |
CMYK | 0.00% | 6.30% | 0.00% |
6.67% |
HEX | EE | DF | EE |
Decimal | 238 | 223 | 238 |
Binary | 11101110 | 11011111 | 11101110 |
Octal | 356 | 337 | 356 |
Examples of css and html codes for elements with #EEDFEE color. Also use rgb(238,223,238) instead hex code.
.myTextColor { color: #EEDFEE; }
<p style="color:#EEDFEE">This sample text font color is #EEDFEE.</p>
This text font color is #EEDFEE.
.myBgColor { background-color: #EEDFEE; }
<div style="background-color:#EEDFEE">Inner text</div>
This div background color is #EEDFEE.
.myBorderColor { border: 1px solid #EEDFEE; }
<div style="border:3px solid #EEDFEE">Div</div>
This div border color is #EEDFEE.
.myOpacity80 { color: #EEDFEE; opacity: 0.8; }
<p style="color:#EEDFEE;opacity:0.8;">80%</p>
Text with #EEDFEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDFEE;}
<p style="text-shadow: 3px 3px 1px #EEDFEE">Text here.</p>
This text has shadow with #EEDFEE color.
.textShadow {text-shadow: 3px 3px 1px #EEDFEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDFEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDFEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDFEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDFEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDFEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDFEE; -webkit-box-shadow: 1px 1px 3px 2px #EEDFEE; box-shadow: 1px 1px 3px 2px #EEDFEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDFEE; -webkit-box-shadow: 1px 1px 3px 2px #EEDFEE; box-shadow:1px 1px 3px 2px #EEDFEE;">
Div content here</div>
This text has color #EEDFEE on black background.
This text has color #EEDFEE on white background.
This text has black color on #EEDFEE background.
This text has white color on #EEDFEE background.