HEX: #EDF3FB
RGB: (237,243,251)
#EDF3FB contains red, green and blue colors in about the same proportion. Web safe color of #EDF3FB is #FFFFFF (or #FFF).
#EDF3FB color RGB value is (237,243,251).
RGB: (237,243,251) (93%,95%,98%)
R 237 of 255 = 93%
G 243 of 255 = 95%
B 251 of 255 = 98%
R + G + B ~ 95%. #EDF3FB is light color.
R + G + B =
237 + 243 + 251 = 731 (100%)
R 237 of 731 ~ 32.42%
G 243 of 731 ~ 33.24%
B 251 of 731 ~ 34.34%
#EDF3FB color CMYK value is (6,3,0,2).
CMYK: (6,3,0,2) C6M3Y0K2 (6%,3%,0%,2%) (0.06/0.03/0.00/0.02)
ED | F3 | FB | |
---|---|---|---|
RGB | 237 | 243 | 251 |
HSL | 214° | 63.64% | 95.69% |
HSB/HSV | 214° | 5.58% | 98.43% |
CMYK | 5.58% | 3.19% | 0.00% |
1.57% |
HEX | ED | F3 | FB |
Decimal | 237 | 243 | 251 |
Binary | 11101101 | 11110011 | 11111011 |
Octal | 355 | 363 | 373 |
Examples of css and html codes for elements with #EDF3FB color. Also use rgb(237,243,251) instead hex code.
.myTextColor { color: #EDF3FB; }
<p style="color:#EDF3FB">This sample text font color is #EDF3FB.</p>
This text font color is #EDF3FB.
.myBgColor { background-color: #EDF3FB; }
<div style="background-color:#EDF3FB">Inner text</div>
This div background color is #EDF3FB.
.myBorderColor { border: 1px solid #EDF3FB; }
<div style="border:3px solid #EDF3FB">Div</div>
This div border color is #EDF3FB.
.myOpacity80 { color: #EDF3FB; opacity: 0.8; }
<p style="color:#EDF3FB;opacity:0.8;">80%</p>
Text with #EDF3FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF3FB;}
<p style="text-shadow: 3px 3px 1px #EDF3FB">Text here.</p>
This text has shadow with #EDF3FB color.
.textShadow {text-shadow: 3px 3px 1px #EDF3FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF3FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF3FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF3FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF3FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF3FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF3FB; -webkit-box-shadow: 1px 1px 3px 2px #EDF3FB; box-shadow: 1px 1px 3px 2px #EDF3FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF3FB; -webkit-box-shadow: 1px 1px 3px 2px #EDF3FB; box-shadow:1px 1px 3px 2px #EDF3FB;">
Div content here</div>
This text has color #EDF3FB on black background.
This text has color #EDF3FB on white background.
This text has black color on #EDF3FB background.
This text has white color on #EDF3FB background.