HEX: #EDC4EC
RGB: (237,196,236)
#EDC4EC contains red, green and blue colors in about the same proportion. Web safe color of #EDC4EC is #FFCCFF (or #FCF).
#EDC4EC color RGB value is (237,196,236).
RGB: (237,196,236) (93%,77%,93%)
R 237 of 255 = 93%
G 196 of 255 = 77%
B 236 of 255 = 93%
R + G + B ~ 88%. #EDC4EC is light color.
R + G + B =
237 + 196 + 236 = 669 (100%)
R 237 of 669 ~ 35.43%
G 196 of 669 ~ 29.3%
B 236 of 669 ~ 35.28%
#EDC4EC color CMYK value is (0,17,0,7).
CMYK: (0,17,0,7) C0M17Y0K7 (0%,17%,0%,7%) (0.00/0.17/0.00/0.07)
ED | C4 | EC | |
---|---|---|---|
RGB | 237 | 196 | 236 |
HSL | 301° | 53.25% | 84.90% |
HSB/HSV | 301° | 17.30% | 92.94% |
CMYK | 0.00% | 17.30% | 0.42% |
7.06% |
HEX | ED | C4 | EC |
Decimal | 237 | 196 | 236 |
Binary | 11101101 | 11000100 | 11101100 |
Octal | 355 | 304 | 354 |
Examples of css and html codes for elements with #EDC4EC color. Also use rgb(237,196,236) instead hex code.
.myTextColor { color: #EDC4EC; }
<p style="color:#EDC4EC">This sample text font color is #EDC4EC.</p>
This text font color is #EDC4EC.
.myBgColor { background-color: #EDC4EC; }
<div style="background-color:#EDC4EC">Inner text</div>
This div background color is #EDC4EC.
.myBorderColor { border: 1px solid #EDC4EC; }
<div style="border:3px solid #EDC4EC">Div</div>
This div border color is #EDC4EC.
.myOpacity80 { color: #EDC4EC; opacity: 0.8; }
<p style="color:#EDC4EC;opacity:0.8;">80%</p>
Text with #EDC4EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC4EC;}
<p style="text-shadow: 3px 3px 1px #EDC4EC">Text here.</p>
This text has shadow with #EDC4EC color.
.textShadow {text-shadow: 3px 3px 1px #EDC4EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC4EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC4EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC4EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC4EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC4EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC4EC; -webkit-box-shadow: 1px 1px 3px 2px #EDC4EC; box-shadow: 1px 1px 3px 2px #EDC4EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC4EC; -webkit-box-shadow: 1px 1px 3px 2px #EDC4EC; box-shadow:1px 1px 3px 2px #EDC4EC;">
Div content here</div>
This text has color #EDC4EC on black background.
This text has color #EDC4EC on white background.
This text has black color on #EDC4EC background.
This text has white color on #EDC4EC background.