HEX: #EDE2EF
RGB: (237,226,239)
#EDE2EF contains red, green and blue colors in about the same proportion. Web safe color of #EDE2EF is #FFCCFF (or #FCF).
#EDE2EF color RGB value is (237,226,239).
RGB: (237,226,239) (93%,89%,94%)
R 237 of 255 = 93%
G 226 of 255 = 89%
B 239 of 255 = 94%
R + G + B ~ 92%. #EDE2EF is light color.
R + G + B =
237 + 226 + 239 = 702 (100%)
R 237 of 702 ~ 33.76%
G 226 of 702 ~ 32.19%
B 239 of 702 ~ 34.05%
#EDE2EF color CMYK value is (1,5,0,6).
CMYK: (1,5,0,6) C1M5Y0K6 (1%,5%,0%,6%) (0.01/0.05/0.00/0.06)
ED | E2 | EF | |
---|---|---|---|
RGB | 237 | 226 | 239 |
HSL | 291° | 28.89% | 91.18% |
HSB/HSV | 291° | 5.44% | 93.73% |
CMYK | 0.84% | 5.44% | 0.00% |
6.27% |
HEX | ED | E2 | EF |
Decimal | 237 | 226 | 239 |
Binary | 11101101 | 11100010 | 11101111 |
Octal | 355 | 342 | 357 |
Examples of css and html codes for elements with #EDE2EF color. Also use rgb(237,226,239) instead hex code.
.myTextColor { color: #EDE2EF; }
<p style="color:#EDE2EF">This sample text font color is #EDE2EF.</p>
This text font color is #EDE2EF.
.myBgColor { background-color: #EDE2EF; }
<div style="background-color:#EDE2EF">Inner text</div>
This div background color is #EDE2EF.
.myBorderColor { border: 1px solid #EDE2EF; }
<div style="border:3px solid #EDE2EF">Div</div>
This div border color is #EDE2EF.
.myOpacity80 { color: #EDE2EF; opacity: 0.8; }
<p style="color:#EDE2EF;opacity:0.8;">80%</p>
Text with #EDE2EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE2EF;}
<p style="text-shadow: 3px 3px 1px #EDE2EF">Text here.</p>
This text has shadow with #EDE2EF color.
.textShadow {text-shadow: 3px 3px 1px #EDE2EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE2EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE2EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE2EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE2EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE2EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE2EF; -webkit-box-shadow: 1px 1px 3px 2px #EDE2EF; box-shadow: 1px 1px 3px 2px #EDE2EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE2EF; -webkit-box-shadow: 1px 1px 3px 2px #EDE2EF; box-shadow:1px 1px 3px 2px #EDE2EF;">
Div content here</div>
This text has color #EDE2EF on black background.
This text has color #EDE2EF on white background.
This text has black color on #EDE2EF background.
This text has white color on #EDE2EF background.