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