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