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