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