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