HEX: #EDF4BE
RGB: (237,244,190)
#EDF4BE contains red, green and blue colors in about the same proportion. Web safe color of #EDF4BE is #FFFFCC (or #FFC).
#EDF4BE color RGB value is (237,244,190).
RGB: (237,244,190) (93%,96%,75%)
R 237 of 255 = 93%
G 244 of 255 = 96%
B 190 of 255 = 75%
R + G + B ~ 88%. #EDF4BE is light color.
R + G + B =
237 + 244 + 190 = 671 (100%)
R 237 of 671 ~ 35.32%
G 244 of 671 ~ 36.36%
B 190 of 671 ~ 28.32%
#EDF4BE color CMYK value is (3,0,22,4).
CMYK: (3,0,22,4) C3M0Y22K4 (3%,0%,22%,4%) (0.03/0.00/0.22/0.04)
ED | F4 | BE | |
---|---|---|---|
RGB | 237 | 244 | 190 |
HSL | 68° | 71.05% | 85.10% |
HSB/HSV | 68° | 22.13% | 95.69% |
CMYK | 2.87% | 0.00% | 22.13% |
4.31% |
HEX | ED | F4 | BE |
Decimal | 237 | 244 | 190 |
Binary | 11101101 | 11110100 | 10111110 |
Octal | 355 | 364 | 276 |
Examples of css and html codes for elements with #EDF4BE color. Also use rgb(237,244,190) instead hex code.
.myTextColor { color: #EDF4BE; }
<p style="color:#EDF4BE">This sample text font color is #EDF4BE.</p>
This text font color is #EDF4BE.
.myBgColor { background-color: #EDF4BE; }
<div style="background-color:#EDF4BE">Inner text</div>
This div background color is #EDF4BE.
.myBorderColor { border: 1px solid #EDF4BE; }
<div style="border:3px solid #EDF4BE">Div</div>
This div border color is #EDF4BE.
.myOpacity80 { color: #EDF4BE; opacity: 0.8; }
<p style="color:#EDF4BE;opacity:0.8;">80%</p>
Text with #EDF4BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF4BE;}
<p style="text-shadow: 3px 3px 1px #EDF4BE">Text here.</p>
This text has shadow with #EDF4BE color.
.textShadow {text-shadow: 3px 3px 1px #EDF4BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF4BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF4BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF4BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF4BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF4BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF4BE; -webkit-box-shadow: 1px 1px 3px 2px #EDF4BE; box-shadow: 1px 1px 3px 2px #EDF4BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF4BE; -webkit-box-shadow: 1px 1px 3px 2px #EDF4BE; box-shadow:1px 1px 3px 2px #EDF4BE;">
Div content here</div>
This text has color #EDF4BE on black background.
This text has color #EDF4BE on white background.
This text has black color on #EDF4BE background.
This text has white color on #EDF4BE background.