HEX: #E6DEDD
RGB: (230,222,221)
#E6DEDD contains red, green and blue colors in about the same proportion. Web safe color of #E6DEDD is #CCCCCC (or #CCC).
#E6DEDD color RGB value is (230,222,221).
RGB: (230,222,221) (90%,87%,87%)
R 230 of 255 = 90%
G 222 of 255 = 87%
B 221 of 255 = 87%
R + G + B ~ 88%. #E6DEDD is light color.
R + G + B =
230 + 222 + 221 = 673 (100%)
R 230 of 673 ~ 34.18%
G 222 of 673 ~ 32.99%
B 221 of 673 ~ 32.84%
#E6DEDD color CMYK value is (0,3,4,10).
CMYK: (0,3,4,10) C0M3Y4K10 (0%,3%,4%,10%) (0.00/0.03/0.04/0.10)
E6 | DE | DD | |
---|---|---|---|
RGB | 230 | 222 | 221 |
HSL | 7° | 15.25% | 88.43% |
HSB/HSV | 7° | 3.91% | 90.20% |
CMYK | 0.00% | 3.48% | 3.91% |
9.80% |
HEX | E6 | DE | DD |
Decimal | 230 | 222 | 221 |
Binary | 11100110 | 11011110 | 11011101 |
Octal | 346 | 336 | 335 |
Examples of css and html codes for elements with #E6DEDD color. Also use rgb(230,222,221) instead hex code.
.myTextColor { color: #E6DEDD; }
<p style="color:#E6DEDD">This sample text font color is #E6DEDD.</p>
This text font color is #E6DEDD.
.myBgColor { background-color: #E6DEDD; }
<div style="background-color:#E6DEDD">Inner text</div>
This div background color is #E6DEDD.
.myBorderColor { border: 1px solid #E6DEDD; }
<div style="border:3px solid #E6DEDD">Div</div>
This div border color is #E6DEDD.
.myOpacity80 { color: #E6DEDD; opacity: 0.8; }
<p style="color:#E6DEDD;opacity:0.8;">80%</p>
Text with #E6DEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6DEDD;}
<p style="text-shadow: 3px 3px 1px #E6DEDD">Text here.</p>
This text has shadow with #E6DEDD color.
.textShadow {text-shadow: 3px 3px 1px #E6DEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6DEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6DEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6DEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6DEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6DEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6DEDD; -webkit-box-shadow: 1px 1px 3px 2px #E6DEDD; box-shadow: 1px 1px 3px 2px #E6DEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6DEDD; -webkit-box-shadow: 1px 1px 3px 2px #E6DEDD; box-shadow:1px 1px 3px 2px #E6DEDD;">
Div content here</div>
This text has color #E6DEDD on black background.
This text has color #E6DEDD on white background.
This text has black color on #E6DEDD background.
This text has white color on #E6DEDD background.