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