HEX: #EDF4EA
RGB: (237,244,234)
#EDF4EA contains red, green and blue colors in about the same proportion. Web safe color of #EDF4EA is #FFFFFF (or #FFF).
#EDF4EA color RGB value is (237,244,234).
RGB: (237,244,234) (93%,96%,92%)
R 237 of 255 = 93%
G 244 of 255 = 96%
B 234 of 255 = 92%
R + G + B ~ 94%. #EDF4EA is light color.
R + G + B =
237 + 244 + 234 = 715 (100%)
R 237 of 715 ~ 33.15%
G 244 of 715 ~ 34.13%
B 234 of 715 ~ 32.73%
#EDF4EA color CMYK value is (3,0,4,4).
CMYK: (3,0,4,4) C3M0Y4K4 (3%,0%,4%,4%) (0.03/0.00/0.04/0.04)
ED | F4 | EA | |
---|---|---|---|
RGB | 237 | 244 | 234 |
HSL | 102° | 31.25% | 93.73% |
HSB/HSV | 102° | 4.10% | 95.69% |
CMYK | 2.87% | 0.00% | 4.10% |
4.31% |
HEX | ED | F4 | EA |
Decimal | 237 | 244 | 234 |
Binary | 11101101 | 11110100 | 11101010 |
Octal | 355 | 364 | 352 |
Examples of css and html codes for elements with #EDF4EA color. Also use rgb(237,244,234) instead hex code.
.myTextColor { color: #EDF4EA; }
<p style="color:#EDF4EA">This sample text font color is #EDF4EA.</p>
This text font color is #EDF4EA.
.myBgColor { background-color: #EDF4EA; }
<div style="background-color:#EDF4EA">Inner text</div>
This div background color is #EDF4EA.
.myBorderColor { border: 1px solid #EDF4EA; }
<div style="border:3px solid #EDF4EA">Div</div>
This div border color is #EDF4EA.
.myOpacity80 { color: #EDF4EA; opacity: 0.8; }
<p style="color:#EDF4EA;opacity:0.8;">80%</p>
Text with #EDF4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF4EA;}
<p style="text-shadow: 3px 3px 1px #EDF4EA">Text here.</p>
This text has shadow with #EDF4EA color.
.textShadow {text-shadow: 3px 3px 1px #EDF4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF4EA; -webkit-box-shadow: 1px 1px 3px 2px #EDF4EA; box-shadow: 1px 1px 3px 2px #EDF4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF4EA; -webkit-box-shadow: 1px 1px 3px 2px #EDF4EA; box-shadow:1px 1px 3px 2px #EDF4EA;">
Div content here</div>
This text has color #EDF4EA on black background.
This text has color #EDF4EA on white background.
This text has black color on #EDF4EA background.
This text has white color on #EDF4EA background.