HEX: #EEDCDA
RGB: (238,220,218)
#EEDCDA contains red, green and blue colors in about the same proportion. Web safe color of #EEDCDA is #FFCCCC (or #FCC).
#EEDCDA color RGB value is (238,220,218).
RGB: (238,220,218) (93%,86%,85%)
R 238 of 255 = 93%
G 220 of 255 = 86%
B 218 of 255 = 85%
R + G + B ~ 88%. #EEDCDA is light color.
R + G + B =
238 + 220 + 218 = 676 (100%)
R 238 of 676 ~ 35.21%
G 220 of 676 ~ 32.54%
B 218 of 676 ~ 32.25%
#EEDCDA color CMYK value is (0,8,8,7).
CMYK: (0,8,8,7) C0M8Y8K7 (0%,8%,8%,7%) (0.00/0.08/0.08/0.07)
EE | DC | DA | |
---|---|---|---|
RGB | 238 | 220 | 218 |
HSL | 6° | 37.04% | 89.41% |
HSB/HSV | 6° | 8.40% | 93.33% |
CMYK | 0.00% | 7.56% | 8.40% |
6.67% |
HEX | EE | DC | DA |
Decimal | 238 | 220 | 218 |
Binary | 11101110 | 11011100 | 11011010 |
Octal | 356 | 334 | 332 |
Examples of css and html codes for elements with #EEDCDA color. Also use rgb(238,220,218) instead hex code.
.myTextColor { color: #EEDCDA; }
<p style="color:#EEDCDA">This sample text font color is #EEDCDA.</p>
This text font color is #EEDCDA.
.myBgColor { background-color: #EEDCDA; }
<div style="background-color:#EEDCDA">Inner text</div>
This div background color is #EEDCDA.
.myBorderColor { border: 1px solid #EEDCDA; }
<div style="border:3px solid #EEDCDA">Div</div>
This div border color is #EEDCDA.
.myOpacity80 { color: #EEDCDA; opacity: 0.8; }
<p style="color:#EEDCDA;opacity:0.8;">80%</p>
Text with #EEDCDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDCDA;}
<p style="text-shadow: 3px 3px 1px #EEDCDA">Text here.</p>
This text has shadow with #EEDCDA color.
.textShadow {text-shadow: 3px 3px 1px #EEDCDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDCDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDCDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDCDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDCDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDCDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDCDA; -webkit-box-shadow: 1px 1px 3px 2px #EEDCDA; box-shadow: 1px 1px 3px 2px #EEDCDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDCDA; -webkit-box-shadow: 1px 1px 3px 2px #EEDCDA; box-shadow:1px 1px 3px 2px #EEDCDA;">
Div content here</div>
This text has color #EEDCDA on black background.
This text has color #EEDCDA on white background.
This text has black color on #EEDCDA background.
This text has white color on #EEDCDA background.