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