HEX: #E1DAEB
RGB: (225,218,235)
#E1DAEB contains red, green and blue colors in about the same proportion. Web safe color of #E1DAEB is #CCCCFF (or #CCF).
#E1DAEB color RGB value is (225,218,235).
RGB: (225,218,235) (88%,85%,92%)
R 225 of 255 = 88%
G 218 of 255 = 85%
B 235 of 255 = 92%
R + G + B ~ 88%. #E1DAEB is light color.
R + G + B =
225 + 218 + 235 = 678 (100%)
R 225 of 678 ~ 33.19%
G 218 of 678 ~ 32.15%
B 235 of 678 ~ 34.66%
#E1DAEB color CMYK value is (4,7,0,8).
CMYK: (4,7,0,8) C4M7Y0K8 (4%,7%,0%,8%) (0.04/0.07/0.00/0.08)
E1 | DA | EB | |
---|---|---|---|
RGB | 225 | 218 | 235 |
HSL | 265° | 29.82% | 88.82% |
HSB/HSV | 265° | 7.23% | 92.16% |
CMYK | 4.26% | 7.23% | 0.00% |
7.84% |
HEX | E1 | DA | EB |
Decimal | 225 | 218 | 235 |
Binary | 11100001 | 11011010 | 11101011 |
Octal | 341 | 332 | 353 |
Examples of css and html codes for elements with #E1DAEB color. Also use rgb(225,218,235) instead hex code.
.myTextColor { color: #E1DAEB; }
<p style="color:#E1DAEB">This sample text font color is #E1DAEB.</p>
This text font color is #E1DAEB.
.myBgColor { background-color: #E1DAEB; }
<div style="background-color:#E1DAEB">Inner text</div>
This div background color is #E1DAEB.
.myBorderColor { border: 1px solid #E1DAEB; }
<div style="border:3px solid #E1DAEB">Div</div>
This div border color is #E1DAEB.
.myOpacity80 { color: #E1DAEB; opacity: 0.8; }
<p style="color:#E1DAEB;opacity:0.8;">80%</p>
Text with #E1DAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1DAEB;}
<p style="text-shadow: 3px 3px 1px #E1DAEB">Text here.</p>
This text has shadow with #E1DAEB color.
.textShadow {text-shadow: 3px 3px 1px #E1DAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1DAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1DAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1DAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1DAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1DAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1DAEB; -webkit-box-shadow: 1px 1px 3px 2px #E1DAEB; box-shadow: 1px 1px 3px 2px #E1DAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1DAEB; -webkit-box-shadow: 1px 1px 3px 2px #E1DAEB; box-shadow:1px 1px 3px 2px #E1DAEB;">
Div content here</div>
This text has color #E1DAEB on black background.
This text has color #E1DAEB on white background.
This text has black color on #E1DAEB background.
This text has white color on #E1DAEB background.