HEX: #EDE3FE
RGB: (237,227,254)
#EDE3FE contains red, green and blue colors in about the same proportion. Web safe color of #EDE3FE is #FFCCFF (or #FCF).
#EDE3FE color RGB value is (237,227,254).
RGB: (237,227,254) (93%,89%,100%)
R 237 of 255 = 93%
G 227 of 255 = 89%
B 254 of 255 = 100%
R + G + B ~ 94%. #EDE3FE is light color.
R + G + B =
237 + 227 + 254 = 718 (100%)
R 237 of 718 ~ 33.01%
G 227 of 718 ~ 31.62%
B 254 of 718 ~ 35.38%
#EDE3FE color CMYK value is (7,11,0,0).
CMYK: (7,11,0,0) C7M11Y0K0 (7%,11%,0%,0%) (0.07/0.11/0.00/0.00)
ED | E3 | FE | |
---|---|---|---|
RGB | 237 | 227 | 254 |
HSL | 262° | 93.10% | 94.31% |
HSB/HSV | 262° | 10.63% | 99.61% |
CMYK | 6.69% | 10.63% | 0.00% |
0.39% |
HEX | ED | E3 | FE |
Decimal | 237 | 227 | 254 |
Binary | 11101101 | 11100011 | 11111110 |
Octal | 355 | 343 | 376 |
Examples of css and html codes for elements with #EDE3FE color. Also use rgb(237,227,254) instead hex code.
.myTextColor { color: #EDE3FE; }
<p style="color:#EDE3FE">This sample text font color is #EDE3FE.</p>
This text font color is #EDE3FE.
.myBgColor { background-color: #EDE3FE; }
<div style="background-color:#EDE3FE">Inner text</div>
This div background color is #EDE3FE.
.myBorderColor { border: 1px solid #EDE3FE; }
<div style="border:3px solid #EDE3FE">Div</div>
This div border color is #EDE3FE.
.myOpacity80 { color: #EDE3FE; opacity: 0.8; }
<p style="color:#EDE3FE;opacity:0.8;">80%</p>
Text with #EDE3FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE3FE;}
<p style="text-shadow: 3px 3px 1px #EDE3FE">Text here.</p>
This text has shadow with #EDE3FE color.
.textShadow {text-shadow: 3px 3px 1px #EDE3FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE3FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE3FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE3FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE3FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE3FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE3FE; -webkit-box-shadow: 1px 1px 3px 2px #EDE3FE; box-shadow: 1px 1px 3px 2px #EDE3FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE3FE; -webkit-box-shadow: 1px 1px 3px 2px #EDE3FE; box-shadow:1px 1px 3px 2px #EDE3FE;">
Div content here</div>
This text has color #EDE3FE on black background.
This text has color #EDE3FE on white background.
This text has black color on #EDE3FE background.
This text has white color on #EDE3FE background.