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