HEX: #EDF0FD
RGB: (237,240,253)
#EDF0FD contains red, green and blue colors in about the same proportion. Web safe color of #EDF0FD is #FFFFFF (or #FFF).
#EDF0FD color RGB value is (237,240,253).
RGB: (237,240,253) (93%,94%,99%)
R 237 of 255 = 93%
G 240 of 255 = 94%
B 253 of 255 = 99%
R + G + B ~ 95%. #EDF0FD is light color.
R + G + B =
237 + 240 + 253 = 730 (100%)
R 237 of 730 ~ 32.47%
G 240 of 730 ~ 32.88%
B 253 of 730 ~ 34.66%
#EDF0FD color CMYK value is (6,5,0,1).
CMYK: (6,5,0,1) C6M5Y0K1 (6%,5%,0%,1%) (0.06/0.05/0.00/0.01)
ED | F0 | FD | |
---|---|---|---|
RGB | 237 | 240 | 253 |
HSL | 229° | 80.00% | 96.08% |
HSB/HSV | 229° | 6.32% | 99.22% |
CMYK | 6.32% | 5.14% | 0.00% |
0.78% |
HEX | ED | F0 | FD |
Decimal | 237 | 240 | 253 |
Binary | 11101101 | 11110000 | 11111101 |
Octal | 355 | 360 | 375 |
Examples of css and html codes for elements with #EDF0FD color. Also use rgb(237,240,253) instead hex code.
.myTextColor { color: #EDF0FD; }
<p style="color:#EDF0FD">This sample text font color is #EDF0FD.</p>
This text font color is #EDF0FD.
.myBgColor { background-color: #EDF0FD; }
<div style="background-color:#EDF0FD">Inner text</div>
This div background color is #EDF0FD.
.myBorderColor { border: 1px solid #EDF0FD; }
<div style="border:3px solid #EDF0FD">Div</div>
This div border color is #EDF0FD.
.myOpacity80 { color: #EDF0FD; opacity: 0.8; }
<p style="color:#EDF0FD;opacity:0.8;">80%</p>
Text with #EDF0FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF0FD;}
<p style="text-shadow: 3px 3px 1px #EDF0FD">Text here.</p>
This text has shadow with #EDF0FD color.
.textShadow {text-shadow: 3px 3px 1px #EDF0FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF0FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF0FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF0FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF0FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF0FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF0FD; -webkit-box-shadow: 1px 1px 3px 2px #EDF0FD; box-shadow: 1px 1px 3px 2px #EDF0FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF0FD; -webkit-box-shadow: 1px 1px 3px 2px #EDF0FD; box-shadow:1px 1px 3px 2px #EDF0FD;">
Div content here</div>
This text has color #EDF0FD on black background.
This text has color #EDF0FD on white background.
This text has black color on #EDF0FD background.
This text has white color on #EDF0FD background.