HEX: #EDC1DE
RGB: (237,193,222)
#EDC1DE contains red, green and blue colors in about the same proportion. Web safe color of #EDC1DE is #FFCCCC (or #FCC).
#EDC1DE color RGB value is (237,193,222).
RGB: (237,193,222) (93%,76%,87%)
R 237 of 255 = 93%
G 193 of 255 = 76%
B 222 of 255 = 87%
R + G + B ~ 85%. #EDC1DE is quite light color.
R + G + B =
237 + 193 + 222 = 652 (100%)
R 237 of 652 ~ 36.35%
G 193 of 652 ~ 29.6%
B 222 of 652 ~ 34.05%
#EDC1DE color CMYK value is (0,19,6,7).
CMYK: (0,19,6,7) C0M19Y6K7 (0%,19%,6%,7%) (0.00/0.19/0.06/0.07)
ED | C1 | DE | |
---|---|---|---|
RGB | 237 | 193 | 222 |
HSL | 320° | 55.00% | 84.31% |
HSB/HSV | 320° | 18.57% | 92.94% |
CMYK | 0.00% | 18.57% | 6.33% |
7.06% |
HEX | ED | C1 | DE |
Decimal | 237 | 193 | 222 |
Binary | 11101101 | 11000001 | 11011110 |
Octal | 355 | 301 | 336 |
Examples of css and html codes for elements with #EDC1DE color. Also use rgb(237,193,222) instead hex code.
.myTextColor { color: #EDC1DE; }
<p style="color:#EDC1DE">This sample text font color is #EDC1DE.</p>
This text font color is #EDC1DE.
.myBgColor { background-color: #EDC1DE; }
<div style="background-color:#EDC1DE">Inner text</div>
This div background color is #EDC1DE.
.myBorderColor { border: 1px solid #EDC1DE; }
<div style="border:3px solid #EDC1DE">Div</div>
This div border color is #EDC1DE.
.myOpacity80 { color: #EDC1DE; opacity: 0.8; }
<p style="color:#EDC1DE;opacity:0.8;">80%</p>
Text with #EDC1DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC1DE;}
<p style="text-shadow: 3px 3px 1px #EDC1DE">Text here.</p>
This text has shadow with #EDC1DE color.
.textShadow {text-shadow: 3px 3px 1px #EDC1DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC1DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC1DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC1DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC1DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC1DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC1DE; -webkit-box-shadow: 1px 1px 3px 2px #EDC1DE; box-shadow: 1px 1px 3px 2px #EDC1DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC1DE; -webkit-box-shadow: 1px 1px 3px 2px #EDC1DE; box-shadow:1px 1px 3px 2px #EDC1DE;">
Div content here</div>
This text has color #EDC1DE on black background.
This text has color #EDC1DE on white background.
This text has black color on #EDC1DE background.
This text has white color on #EDC1DE background.