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