HEX: #E6EDFE
RGB: (230,237,254)
#E6EDFE contains red, green and blue colors in about the same proportion. Web safe color of #E6EDFE is #CCFFFF (or #CFF).
#E6EDFE color RGB value is (230,237,254).
RGB: (230,237,254) (90%,93%,100%)
R 230 of 255 = 90%
G 237 of 255 = 93%
B 254 of 255 = 100%
R + G + B ~ 94%. #E6EDFE is light color.
R + G + B =
230 + 237 + 254 = 721 (100%)
R 230 of 721 ~ 31.9%
G 237 of 721 ~ 32.87%
B 254 of 721 ~ 35.23%
#E6EDFE color CMYK value is (9,7,0,0).
CMYK: (9,7,0,0) C9M7Y0K0 (9%,7%,0%,0%) (0.09/0.07/0.00/0.00)
E6 | ED | FE | |
---|---|---|---|
RGB | 230 | 237 | 254 |
HSL | 223° | 92.31% | 94.90% |
HSB/HSV | 223° | 9.45% | 99.61% |
CMYK | 9.45% | 6.69% | 0.00% |
0.39% |
HEX | E6 | ED | FE |
Decimal | 230 | 237 | 254 |
Binary | 11100110 | 11101101 | 11111110 |
Octal | 346 | 355 | 376 |
Examples of css and html codes for elements with #E6EDFE color. Also use rgb(230,237,254) instead hex code.
.myTextColor { color: #E6EDFE; }
<p style="color:#E6EDFE">This sample text font color is #E6EDFE.</p>
This text font color is #E6EDFE.
.myBgColor { background-color: #E6EDFE; }
<div style="background-color:#E6EDFE">Inner text</div>
This div background color is #E6EDFE.
.myBorderColor { border: 1px solid #E6EDFE; }
<div style="border:3px solid #E6EDFE">Div</div>
This div border color is #E6EDFE.
.myOpacity80 { color: #E6EDFE; opacity: 0.8; }
<p style="color:#E6EDFE;opacity:0.8;">80%</p>
Text with #E6EDFE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6EDFE;}
<p style="text-shadow: 3px 3px 1px #E6EDFE">Text here.</p>
This text has shadow with #E6EDFE color.
.textShadow {text-shadow: 3px 3px 1px #E6EDFE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6EDFE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6EDFE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6EDFE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6EDFE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6EDFE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6EDFE; -webkit-box-shadow: 1px 1px 3px 2px #E6EDFE; box-shadow: 1px 1px 3px 2px #E6EDFE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6EDFE; -webkit-box-shadow: 1px 1px 3px 2px #E6EDFE; box-shadow:1px 1px 3px 2px #E6EDFE;">
Div content here</div>
This text has color #E6EDFE on black background.
This text has color #E6EDFE on white background.
This text has black color on #E6EDFE background.
This text has white color on #E6EDFE background.