HEX: #E6DCED
RGB: (230,220,237)
#E6DCED contains red, green and blue colors in about the same proportion. Web safe color of #E6DCED is #CCCCFF (or #CCF).
#E6DCED color RGB value is (230,220,237).
RGB: (230,220,237) (90%,86%,93%)
R 230 of 255 = 90%
G 220 of 255 = 86%
B 237 of 255 = 93%
R + G + B ~ 90%. #E6DCED is light color.
R + G + B =
230 + 220 + 237 = 687 (100%)
R 230 of 687 ~ 33.48%
G 220 of 687 ~ 32.02%
B 237 of 687 ~ 34.5%
#E6DCED color CMYK value is (3,7,0,7).
CMYK: (3,7,0,7) C3M7Y0K7 (3%,7%,0%,7%) (0.03/0.07/0.00/0.07)
E6 | DC | ED | |
---|---|---|---|
RGB | 230 | 220 | 237 |
HSL | 275° | 32.08% | 89.61% |
HSB/HSV | 275° | 7.17% | 92.94% |
CMYK | 2.95% | 7.17% | 0.00% |
7.06% |
HEX | E6 | DC | ED |
Decimal | 230 | 220 | 237 |
Binary | 11100110 | 11011100 | 11101101 |
Octal | 346 | 334 | 355 |
Examples of css and html codes for elements with #E6DCED color. Also use rgb(230,220,237) instead hex code.
.myTextColor { color: #E6DCED; }
<p style="color:#E6DCED">This sample text font color is #E6DCED.</p>
This text font color is #E6DCED.
.myBgColor { background-color: #E6DCED; }
<div style="background-color:#E6DCED">Inner text</div>
This div background color is #E6DCED.
.myBorderColor { border: 1px solid #E6DCED; }
<div style="border:3px solid #E6DCED">Div</div>
This div border color is #E6DCED.
.myOpacity80 { color: #E6DCED; opacity: 0.8; }
<p style="color:#E6DCED;opacity:0.8;">80%</p>
Text with #E6DCED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6DCED;}
<p style="text-shadow: 3px 3px 1px #E6DCED">Text here.</p>
This text has shadow with #E6DCED color.
.textShadow {text-shadow: 3px 3px 1px #E6DCED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6DCED, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6DCED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6DCED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6DCED, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6DCED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6DCED; -webkit-box-shadow: 1px 1px 3px 2px #E6DCED; box-shadow: 1px 1px 3px 2px #E6DCED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6DCED; -webkit-box-shadow: 1px 1px 3px 2px #E6DCED; box-shadow:1px 1px 3px 2px #E6DCED;">
Div content here</div>
This text has color #E6DCED on black background.
This text has color #E6DCED on white background.
This text has black color on #E6DCED background.
This text has white color on #E6DCED background.