HEX: #E3DCEB
RGB: (227,220,235)
#E3DCEB contains red, green and blue colors in about the same proportion. Web safe color of #E3DCEB is #CCCCFF (or #CCF).
#E3DCEB color RGB value is (227,220,235).
RGB: (227,220,235) (89%,86%,92%)
R 227 of 255 = 89%
G 220 of 255 = 86%
B 235 of 255 = 92%
R + G + B ~ 89%. #E3DCEB is light color.
R + G + B =
227 + 220 + 235 = 682 (100%)
R 227 of 682 ~ 33.28%
G 220 of 682 ~ 32.26%
B 235 of 682 ~ 34.46%
#E3DCEB color CMYK value is (3,6,0,8).
CMYK: (3,6,0,8) C3M6Y0K8 (3%,6%,0%,8%) (0.03/0.06/0.00/0.08)
E3 | DC | EB | |
---|---|---|---|
RGB | 227 | 220 | 235 |
HSL | 268° | 27.27% | 89.22% |
HSB/HSV | 268° | 6.38% | 92.16% |
CMYK | 3.40% | 6.38% | 0.00% |
7.84% |
HEX | E3 | DC | EB |
Decimal | 227 | 220 | 235 |
Binary | 11100011 | 11011100 | 11101011 |
Octal | 343 | 334 | 353 |
Examples of css and html codes for elements with #E3DCEB color. Also use rgb(227,220,235) instead hex code.
.myTextColor { color: #E3DCEB; }
<p style="color:#E3DCEB">This sample text font color is #E3DCEB.</p>
This text font color is #E3DCEB.
.myBgColor { background-color: #E3DCEB; }
<div style="background-color:#E3DCEB">Inner text</div>
This div background color is #E3DCEB.
.myBorderColor { border: 1px solid #E3DCEB; }
<div style="border:3px solid #E3DCEB">Div</div>
This div border color is #E3DCEB.
.myOpacity80 { color: #E3DCEB; opacity: 0.8; }
<p style="color:#E3DCEB;opacity:0.8;">80%</p>
Text with #E3DCEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3DCEB;}
<p style="text-shadow: 3px 3px 1px #E3DCEB">Text here.</p>
This text has shadow with #E3DCEB color.
.textShadow {text-shadow: 3px 3px 1px #E3DCEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3DCEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3DCEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3DCEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3DCEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3DCEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3DCEB; -webkit-box-shadow: 1px 1px 3px 2px #E3DCEB; box-shadow: 1px 1px 3px 2px #E3DCEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3DCEB; -webkit-box-shadow: 1px 1px 3px 2px #E3DCEB; box-shadow:1px 1px 3px 2px #E3DCEB;">
Div content here</div>
This text has color #E3DCEB on black background.
This text has color #E3DCEB on white background.
This text has black color on #E3DCEB background.
This text has white color on #E3DCEB background.