HEX: #E2DBEB
RGB: (226,219,235)
#E2DBEB contains red, green and blue colors in about the same proportion. Web safe color of #E2DBEB is #CCCCFF (or #CCF).
#E2DBEB color RGB value is (226,219,235).
RGB: (226,219,235) (89%,86%,92%)
R 226 of 255 = 89%
G 219 of 255 = 86%
B 235 of 255 = 92%
R + G + B ~ 89%. #E2DBEB is light color.
R + G + B =
226 + 219 + 235 = 680 (100%)
R 226 of 680 ~ 33.24%
G 219 of 680 ~ 32.21%
B 235 of 680 ~ 34.56%
#E2DBEB 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)
E2 | DB | EB | |
---|---|---|---|
RGB | 226 | 219 | 235 |
HSL | 266° | 28.57% | 89.02% |
HSB/HSV | 266° | 6.81% | 92.16% |
CMYK | 3.83% | 6.81% | 0.00% |
7.84% |
HEX | E2 | DB | EB |
Decimal | 226 | 219 | 235 |
Binary | 11100010 | 11011011 | 11101011 |
Octal | 342 | 333 | 353 |
Examples of css and html codes for elements with #E2DBEB color. Also use rgb(226,219,235) instead hex code.
.myTextColor { color: #E2DBEB; }
<p style="color:#E2DBEB">This sample text font color is #E2DBEB.</p>
This text font color is #E2DBEB.
.myBgColor { background-color: #E2DBEB; }
<div style="background-color:#E2DBEB">Inner text</div>
This div background color is #E2DBEB.
.myBorderColor { border: 1px solid #E2DBEB; }
<div style="border:3px solid #E2DBEB">Div</div>
This div border color is #E2DBEB.
.myOpacity80 { color: #E2DBEB; opacity: 0.8; }
<p style="color:#E2DBEB;opacity:0.8;">80%</p>
Text with #E2DBEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2DBEB;}
<p style="text-shadow: 3px 3px 1px #E2DBEB">Text here.</p>
This text has shadow with #E2DBEB color.
.textShadow {text-shadow: 3px 3px 1px #E2DBEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2DBEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2DBEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2DBEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2DBEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2DBEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2DBEB; -webkit-box-shadow: 1px 1px 3px 2px #E2DBEB; box-shadow: 1px 1px 3px 2px #E2DBEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2DBEB; -webkit-box-shadow: 1px 1px 3px 2px #E2DBEB; box-shadow:1px 1px 3px 2px #E2DBEB;">
Div content here</div>
This text has color #E2DBEB on black background.
This text has color #E2DBEB on white background.
This text has black color on #E2DBEB background.
This text has white color on #E2DBEB background.