HEX: #EDE5FD
RGB: (237,229,253)
#EDE5FD contains red, green and blue colors in about the same proportion. Web safe color of #EDE5FD is #FFCCFF (or #FCF).
#EDE5FD color RGB value is (237,229,253).
RGB: (237,229,253) (93%,90%,99%)
R 237 of 255 = 93%
G 229 of 255 = 90%
B 253 of 255 = 99%
R + G + B ~ 94%. #EDE5FD is light color.
R + G + B =
237 + 229 + 253 = 719 (100%)
R 237 of 719 ~ 32.96%
G 229 of 719 ~ 31.85%
B 253 of 719 ~ 35.19%
#EDE5FD color CMYK value is (6,9,0,1).
CMYK: (6,9,0,1) C6M9Y0K1 (6%,9%,0%,1%) (0.06/0.09/0.00/0.01)
ED | E5 | FD | |
---|---|---|---|
RGB | 237 | 229 | 253 |
HSL | 260° | 85.71% | 94.51% |
HSB/HSV | 260° | 9.49% | 99.22% |
CMYK | 6.32% | 9.49% | 0.00% |
0.78% |
HEX | ED | E5 | FD |
Decimal | 237 | 229 | 253 |
Binary | 11101101 | 11100101 | 11111101 |
Octal | 355 | 345 | 375 |
Examples of css and html codes for elements with #EDE5FD color. Also use rgb(237,229,253) instead hex code.
.myTextColor { color: #EDE5FD; }
<p style="color:#EDE5FD">This sample text font color is #EDE5FD.</p>
This text font color is #EDE5FD.
.myBgColor { background-color: #EDE5FD; }
<div style="background-color:#EDE5FD">Inner text</div>
This div background color is #EDE5FD.
.myBorderColor { border: 1px solid #EDE5FD; }
<div style="border:3px solid #EDE5FD">Div</div>
This div border color is #EDE5FD.
.myOpacity80 { color: #EDE5FD; opacity: 0.8; }
<p style="color:#EDE5FD;opacity:0.8;">80%</p>
Text with #EDE5FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE5FD;}
<p style="text-shadow: 3px 3px 1px #EDE5FD">Text here.</p>
This text has shadow with #EDE5FD color.
.textShadow {text-shadow: 3px 3px 1px #EDE5FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE5FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE5FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE5FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE5FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE5FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE5FD; -webkit-box-shadow: 1px 1px 3px 2px #EDE5FD; box-shadow: 1px 1px 3px 2px #EDE5FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE5FD; -webkit-box-shadow: 1px 1px 3px 2px #EDE5FD; box-shadow:1px 1px 3px 2px #EDE5FD;">
Div content here</div>
This text has color #EDE5FD on black background.
This text has color #EDE5FD on white background.
This text has black color on #EDE5FD background.
This text has white color on #EDE5FD background.