HEX: #EDF4FE
RGB: (237,244,254)
#EDF4FE contains red, green and blue colors in about the same proportion. Web safe color of #EDF4FE is #FFFFFF (or #FFF).
#EDF4FE color RGB value is (237,244,254).
RGB: (237,244,254) (93%,96%,100%)
R 237 of 255 = 93%
G 244 of 255 = 96%
B 254 of 255 = 100%
R + G + B ~ 96%. #EDF4FE is light color.
R + G + B =
237 + 244 + 254 = 735 (100%)
R 237 of 735 ~ 32.24%
G 244 of 735 ~ 33.2%
B 254 of 735 ~ 34.56%
#EDF4FE color CMYK value is (7,4,0,0).
CMYK: (7,4,0,0) C7M4Y0K0 (7%,4%,0%,0%) (0.07/0.04/0.00/0.00)
ED | F4 | FE | |
---|---|---|---|
RGB | 237 | 244 | 254 |
HSL | 215° | 89.47% | 96.27% |
HSB/HSV | 215° | 6.69% | 99.61% |
CMYK | 6.69% | 3.94% | 0.00% |
0.39% |
HEX | ED | F4 | FE |
Decimal | 237 | 244 | 254 |
Binary | 11101101 | 11110100 | 11111110 |
Octal | 355 | 364 | 376 |
Examples of css and html codes for elements with #EDF4FE color. Also use rgb(237,244,254) instead hex code.
.myTextColor { color: #EDF4FE; }
<p style="color:#EDF4FE">This sample text font color is #EDF4FE.</p>
This text font color is #EDF4FE.
.myBgColor { background-color: #EDF4FE; }
<div style="background-color:#EDF4FE">Inner text</div>
This div background color is #EDF4FE.
.myBorderColor { border: 1px solid #EDF4FE; }
<div style="border:3px solid #EDF4FE">Div</div>
This div border color is #EDF4FE.
.myOpacity80 { color: #EDF4FE; opacity: 0.8; }
<p style="color:#EDF4FE;opacity:0.8;">80%</p>
Text with #EDF4FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF4FE;}
<p style="text-shadow: 3px 3px 1px #EDF4FE">Text here.</p>
This text has shadow with #EDF4FE color.
.textShadow {text-shadow: 3px 3px 1px #EDF4FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF4FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF4FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF4FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF4FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF4FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF4FE; -webkit-box-shadow: 1px 1px 3px 2px #EDF4FE; box-shadow: 1px 1px 3px 2px #EDF4FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF4FE; -webkit-box-shadow: 1px 1px 3px 2px #EDF4FE; box-shadow:1px 1px 3px 2px #EDF4FE;">
Div content here</div>
This text has color #EDF4FE on black background.
This text has color #EDF4FE on white background.
This text has black color on #EDF4FE background.
This text has white color on #EDF4FE background.