HEX: #EDE6FF
RGB: (237,230,255)
#EDE6FF contains red, green and blue colors in about the same proportion. Web safe color of #EDE6FF is #FFCCFF (or #FCF).
#EDE6FF color RGB value is (237,230,255).
RGB: (237,230,255) (93%,90%,100%)
R 237 of 255 = 93%
G 230 of 255 = 90%
B 255 of 255 = 100%
R + G + B ~ 94%. #EDE6FF is light color.
R + G + B =
237 + 230 + 255 = 722 (100%)
R 237 of 722 ~ 32.83%
G 230 of 722 ~ 31.86%
B 255 of 722 ~ 35.32%
#EDE6FF color CMYK value is (7,10,0,0).
CMYK: (7,10,0,0) C7M10Y0K0 (7%,10%,0%,0%) (0.07/0.10/0.00/0.00)
ED | E6 | FF | |
---|---|---|---|
RGB | 237 | 230 | 255 |
HSL | 257° | 100.00% | 95.10% |
HSB/HSV | 257° | 9.80% | 100.00% |
CMYK | 7.06% | 9.80% | 0.00% |
0.00% |
HEX | ED | E6 | FF |
Decimal | 237 | 230 | 255 |
Binary | 11101101 | 11100110 | 11111111 |
Octal | 355 | 346 | 377 |
Examples of css and html codes for elements with #EDE6FF color. Also use rgb(237,230,255) instead hex code.
.myTextColor { color: #EDE6FF; }
<p style="color:#EDE6FF">This sample text font color is #EDE6FF.</p>
This text font color is #EDE6FF.
.myBgColor { background-color: #EDE6FF; }
<div style="background-color:#EDE6FF">Inner text</div>
This div background color is #EDE6FF.
.myBorderColor { border: 1px solid #EDE6FF; }
<div style="border:3px solid #EDE6FF">Div</div>
This div border color is #EDE6FF.
.myOpacity80 { color: #EDE6FF; opacity: 0.8; }
<p style="color:#EDE6FF;opacity:0.8;">80%</p>
Text with #EDE6FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE6FF;}
<p style="text-shadow: 3px 3px 1px #EDE6FF">Text here.</p>
This text has shadow with #EDE6FF color.
.textShadow {text-shadow: 3px 3px 1px #EDE6FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE6FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE6FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE6FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE6FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE6FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE6FF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6FF; box-shadow: 1px 1px 3px 2px #EDE6FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE6FF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6FF; box-shadow:1px 1px 3px 2px #EDE6FF;">
Div content here</div>
This text has color #EDE6FF on black background.
This text has color #EDE6FF on white background.
This text has black color on #EDE6FF background.
This text has white color on #EDE6FF background.