HEX: #EDE6FC
RGB: (237,230,252)
#EDE6FC contains red, green and blue colors in about the same proportion. Web safe color of #EDE6FC is #FFCCFF (or #FCF).
#EDE6FC color RGB value is (237,230,252).
RGB: (237,230,252) (93%,90%,99%)
R 237 of 255 = 93%
G 230 of 255 = 90%
B 252 of 255 = 99%
R + G + B ~ 94%. #EDE6FC is light color.
R + G + B =
237 + 230 + 252 = 719 (100%)
R 237 of 719 ~ 32.96%
G 230 of 719 ~ 31.99%
B 252 of 719 ~ 35.05%
#EDE6FC 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 | E6 | FC | |
---|---|---|---|
RGB | 237 | 230 | 252 |
HSL | 259° | 78.57% | 94.51% |
HSB/HSV | 259° | 8.73% | 98.82% |
CMYK | 5.95% | 8.73% | 0.00% |
1.18% |
HEX | ED | E6 | FC |
Decimal | 237 | 230 | 252 |
Binary | 11101101 | 11100110 | 11111100 |
Octal | 355 | 346 | 374 |
Examples of css and html codes for elements with #EDE6FC color. Also use rgb(237,230,252) instead hex code.
.myTextColor { color: #EDE6FC; }
<p style="color:#EDE6FC">This sample text font color is #EDE6FC.</p>
This text font color is #EDE6FC.
.myBgColor { background-color: #EDE6FC; }
<div style="background-color:#EDE6FC">Inner text</div>
This div background color is #EDE6FC.
.myBorderColor { border: 1px solid #EDE6FC; }
<div style="border:3px solid #EDE6FC">Div</div>
This div border color is #EDE6FC.
.myOpacity80 { color: #EDE6FC; opacity: 0.8; }
<p style="color:#EDE6FC;opacity:0.8;">80%</p>
Text with #EDE6FC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE6FC;}
<p style="text-shadow: 3px 3px 1px #EDE6FC">Text here.</p>
This text has shadow with #EDE6FC color.
.textShadow {text-shadow: 3px 3px 1px #EDE6FC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE6FC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE6FC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE6FC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE6FC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE6FC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE6FC; -webkit-box-shadow: 1px 1px 3px 2px #EDE6FC; box-shadow: 1px 1px 3px 2px #EDE6FC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE6FC; -webkit-box-shadow: 1px 1px 3px 2px #EDE6FC; box-shadow:1px 1px 3px 2px #EDE6FC;">
Div content here</div>
This text has color #EDE6FC on black background.
This text has color #EDE6FC on white background.
This text has black color on #EDE6FC background.
This text has white color on #EDE6FC background.