HEX: #EDEFFF
RGB: (237,239,255)
#EDEFFF contains red, green and blue colors in about the same proportion. Web safe color of #EDEFFF is #FFFFFF (or #FFF).
#EDEFFF color RGB value is (237,239,255).
RGB: (237,239,255) (93%,94%,100%)
R 237 of 255 = 93%
G 239 of 255 = 94%
B 255 of 255 = 100%
R + G + B ~ 96%. #EDEFFF is light color.
R + G + B =
237 + 239 + 255 = 731 (100%)
R 237 of 731 ~ 32.42%
G 239 of 731 ~ 32.69%
B 255 of 731 ~ 34.88%
#EDEFFF color CMYK value is (7,6,0,0).
CMYK: (7,6,0,0) C7M6Y0K0 (7%,6%,0%,0%) (0.07/0.06/0.00/0.00)
ED | EF | FF | |
---|---|---|---|
RGB | 237 | 239 | 255 |
HSL | 233° | 100.00% | 96.47% |
HSB/HSV | 233° | 7.06% | 100.00% |
CMYK | 7.06% | 6.27% | 0.00% |
0.00% |
HEX | ED | EF | FF |
Decimal | 237 | 239 | 255 |
Binary | 11101101 | 11101111 | 11111111 |
Octal | 355 | 357 | 377 |
Examples of css and html codes for elements with #EDEFFF color. Also use rgb(237,239,255) instead hex code.
.myTextColor { color: #EDEFFF; }
<p style="color:#EDEFFF">This sample text font color is #EDEFFF.</p>
This text font color is #EDEFFF.
.myBgColor { background-color: #EDEFFF; }
<div style="background-color:#EDEFFF">Inner text</div>
This div background color is #EDEFFF.
.myBorderColor { border: 1px solid #EDEFFF; }
<div style="border:3px solid #EDEFFF">Div</div>
This div border color is #EDEFFF.
.myOpacity80 { color: #EDEFFF; opacity: 0.8; }
<p style="color:#EDEFFF;opacity:0.8;">80%</p>
Text with #EDEFFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEFFF;}
<p style="text-shadow: 3px 3px 1px #EDEFFF">Text here.</p>
This text has shadow with #EDEFFF color.
.textShadow {text-shadow: 3px 3px 1px #EDEFFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEFFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEFFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEFFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEFFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEFFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEFFF; -webkit-box-shadow: 1px 1px 3px 2px #EDEFFF; box-shadow: 1px 1px 3px 2px #EDEFFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEFFF; -webkit-box-shadow: 1px 1px 3px 2px #EDEFFF; box-shadow:1px 1px 3px 2px #EDEFFF;">
Div content here</div>
This text has color #EDEFFF on black background.
This text has color #EDEFFF on white background.
This text has black color on #EDEFFF background.
This text has white color on #EDEFFF background.