HEX: #EDC9DC
RGB: (237,201,220)
#EDC9DC contains red, green and blue colors in about the same proportion. #EDC9DC ‘ nin web güvenlik rengi #FFCCCC (ya da #FCC) dir.
#EDC9DC color RGB value is (237,201,220).
RGB: (237,201,220) (93%,79%,86%)
R 237 of 255 = 93%
G 201 of 255 = 79%
B 220 of 255 = 86%
R + G + B ~ 86%. #EDC9DC is light color.
R + G + B =
237 + 201 + 220 = 658 (100%)
R 237 of 658 ~ 36.02%
G 201 of 658 ~ 30.55%
B 220 of 658 ~ 33.43%
#EDC9DC rengi CMYK tonu (0,15,7,7).
CMYK: (0,15,7,7) C0M15Y7K7 (0%,15%,7%,7%) (0.00/0.15/0.07/0.07)
ED | C9 | DC | |
---|---|---|---|
RGB | 237 | 201 | 220 |
HSL | 328° | 50.00% | 85.88% |
HSB/HSV | 328° | 15.19% | 92.94% |
CMYK | 0.00% | 15.19% | 7.17% |
7.06% |
HEX | ED | C9 | DC |
Decimal | 237 | 201 | 220 |
Binary | 11101101 | 11001001 | 11011100 |
Octal | 355 | 311 | 334 |
Examples of css and html codes for elements with #EDC9DC color. Also use rgb(237,201,220) instead hex code.
.myTextColor { color: #EDC9DC; }
<p style="color:#EDC9DC">This sample text font color is #EDC9DC.</p>
This text font color is #EDC9DC.
.myBgColor { background-color: #EDC9DC; }
<div style="background-color:#EDC9DC">Inner text</div>
This div background color is #EDC9DC.
.myBorderColor { border: 1px solid #EDC9DC; }
<div style="border:3px solid #EDC9DC">Div</div>
This div border color is #EDC9DC.
.myOpacity80 { color: #EDC9DC; opacity: 0.8; }
<p style="color:#EDC9DC;opacity:0.8;">80%</p>
Text with #EDC9DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC9DC;}
<p style="text-shadow: 3px 3px 1px #EDC9DC">Text here.</p>
This text has shadow with #EDC9DC color.
.textShadow {text-shadow: 3px 3px 1px #EDC9DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC9DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC9DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC9DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC9DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC9DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC9DC; -webkit-box-shadow: 1px 1px 3px 2px #EDC9DC; box-shadow: 1px 1px 3px 2px #EDC9DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC9DC; -webkit-box-shadow: 1px 1px 3px 2px #EDC9DC; box-shadow:1px 1px 3px 2px #EDC9DC;">
Div content here</div>
This text has color #EDC9DC on black background.
This text has color #EDC9DC on white background.
This text has black color on #EDC9DC background.
This text has white color on #EDC9DC background.