HEX: #EDCED5
RGB: (237,206,213)
#EDCED5 contains red, green and blue colors in about the same proportion. Web safe color of #EDCED5 is #FFCCCC (or #FCC).
#EDCED5 color RGB value is (237,206,213).
RGB: (237,206,213) (93%,81%,84%)
R 237 of 255 = 93%
G 206 of 255 = 81%
B 213 of 255 = 84%
R + G + B ~ 86%. #EDCED5 is light color.
R + G + B =
237 + 206 + 213 = 656 (100%)
R 237 of 656 ~ 36.13%
G 206 of 656 ~ 31.4%
B 213 of 656 ~ 32.47%
#EDCED5 color CMYK value is (0,13,10,7).
CMYK: (0,13,10,7) C0M13Y10K7 (0%,13%,10%,7%) (0.00/0.13/0.10/0.07)
ED | CE | D5 | |
---|---|---|---|
RGB | 237 | 206 | 213 |
HSL | 346° | 46.27% | 86.86% |
HSB/HSV | 346° | 13.08% | 92.94% |
CMYK | 0.00% | 13.08% | 10.13% |
7.06% |
HEX | ED | CE | D5 |
Decimal | 237 | 206 | 213 |
Binary | 11101101 | 11001110 | 11010101 |
Octal | 355 | 316 | 325 |
Examples of css and html codes for elements with #EDCED5 color. Also use rgb(237,206,213) instead hex code.
.myTextColor { color: #EDCED5; }
<p style="color:#EDCED5">This sample text font color is #EDCED5.</p>
This text font color is #EDCED5.
.myBgColor { background-color: #EDCED5; }
<div style="background-color:#EDCED5">Inner text</div>
This div background color is #EDCED5.
.myBorderColor { border: 1px solid #EDCED5; }
<div style="border:3px solid #EDCED5">Div</div>
This div border color is #EDCED5.
.myOpacity80 { color: #EDCED5; opacity: 0.8; }
<p style="color:#EDCED5;opacity:0.8;">80%</p>
Text with #EDCED5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCED5;}
<p style="text-shadow: 3px 3px 1px #EDCED5">Text here.</p>
This text has shadow with #EDCED5 color.
.textShadow {text-shadow: 3px 3px 1px #EDCED5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCED5, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCED5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCED5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCED5, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCED5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCED5; -webkit-box-shadow: 1px 1px 3px 2px #EDCED5; box-shadow: 1px 1px 3px 2px #EDCED5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCED5; -webkit-box-shadow: 1px 1px 3px 2px #EDCED5; box-shadow:1px 1px 3px 2px #EDCED5;">
Div content here</div>
This text has color #EDCED5 on black background.
This text has color #EDCED5 on white background.
This text has black color on #EDCED5 background.
This text has white color on #EDCED5 background.