HEX: #EDCBE5
RGB: (237,203,229)
#EDCBE5 contains red, green and blue colors in about the same proportion. Web safe color of #EDCBE5 is #FFCCCC (or #FCC).
#EDCBE5 color RGB value is (237,203,229).
RGB: (237,203,229) (93%,80%,90%)
R 237 of 255 = 93%
G 203 of 255 = 80%
B 229 of 255 = 90%
R + G + B ~ 88%. #EDCBE5 is light color.
R + G + B =
237 + 203 + 229 = 669 (100%)
R 237 of 669 ~ 35.43%
G 203 of 669 ~ 30.34%
B 229 of 669 ~ 34.23%
#EDCBE5 color CMYK value is (0,14,3,7).
CMYK: (0,14,3,7) C0M14Y3K7 (0%,14%,3%,7%) (0.00/0.14/0.03/0.07)
ED | CB | E5 | |
---|---|---|---|
RGB | 237 | 203 | 229 |
HSL | 314° | 48.57% | 86.27% |
HSB/HSV | 314° | 14.35% | 92.94% |
CMYK | 0.00% | 14.35% | 3.38% |
7.06% |
HEX | ED | CB | E5 |
Decimal | 237 | 203 | 229 |
Binary | 11101101 | 11001011 | 11100101 |
Octal | 355 | 313 | 345 |
Examples of css and html codes for elements with #EDCBE5 color. Also use rgb(237,203,229) instead hex code.
.myTextColor { color: #EDCBE5; }
<p style="color:#EDCBE5">This sample text font color is #EDCBE5.</p>
This text font color is #EDCBE5.
.myBgColor { background-color: #EDCBE5; }
<div style="background-color:#EDCBE5">Inner text</div>
This div background color is #EDCBE5.
.myBorderColor { border: 1px solid #EDCBE5; }
<div style="border:3px solid #EDCBE5">Div</div>
This div border color is #EDCBE5.
.myOpacity80 { color: #EDCBE5; opacity: 0.8; }
<p style="color:#EDCBE5;opacity:0.8;">80%</p>
Text with #EDCBE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCBE5;}
<p style="text-shadow: 3px 3px 1px #EDCBE5">Text here.</p>
This text has shadow with #EDCBE5 color.
.textShadow {text-shadow: 3px 3px 1px #EDCBE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCBE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCBE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCBE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCBE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCBE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCBE5; -webkit-box-shadow: 1px 1px 3px 2px #EDCBE5; box-shadow: 1px 1px 3px 2px #EDCBE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCBE5; -webkit-box-shadow: 1px 1px 3px 2px #EDCBE5; box-shadow:1px 1px 3px 2px #EDCBE5;">
Div content here</div>
This text has color #EDCBE5 on black background.
This text has color #EDCBE5 on white background.
This text has black color on #EDCBE5 background.
This text has white color on #EDCBE5 background.