HEX: #EDEFDB
RGB: (237,239,219)
#EDEFDB contains red, green and blue colors in about the same proportion. Web safe color of #EDEFDB is #FFFFCC (or #FFC).
#EDEFDB color RGB value is (237,239,219).
RGB: (237,239,219) (93%,94%,86%)
R 237 of 255 = 93%
G 239 of 255 = 94%
B 219 of 255 = 86%
R + G + B ~ 91%. #EDEFDB is light color.
R + G + B =
237 + 239 + 219 = 695 (100%)
R 237 of 695 ~ 34.1%
G 239 of 695 ~ 34.39%
B 219 of 695 ~ 31.51%
#EDEFDB color CMYK value is (1,0,8,6).
CMYK: (1,0,8,6) C1M0Y8K6 (1%,0%,8%,6%) (0.01/0.00/0.08/0.06)
ED | EF | DB | |
---|---|---|---|
RGB | 237 | 239 | 219 |
HSL | 66° | 38.46% | 89.80% |
HSB/HSV | 66° | 8.37% | 93.73% |
CMYK | 0.84% | 0.00% | 8.37% |
6.27% |
HEX | ED | EF | DB |
Decimal | 237 | 239 | 219 |
Binary | 11101101 | 11101111 | 11011011 |
Octal | 355 | 357 | 333 |
Examples of css and html codes for elements with #EDEFDB color. Also use rgb(237,239,219) instead hex code.
.myTextColor { color: #EDEFDB; }
<p style="color:#EDEFDB">This sample text font color is #EDEFDB.</p>
This text font color is #EDEFDB.
.myBgColor { background-color: #EDEFDB; }
<div style="background-color:#EDEFDB">Inner text</div>
This div background color is #EDEFDB.
.myBorderColor { border: 1px solid #EDEFDB; }
<div style="border:3px solid #EDEFDB">Div</div>
This div border color is #EDEFDB.
.myOpacity80 { color: #EDEFDB; opacity: 0.8; }
<p style="color:#EDEFDB;opacity:0.8;">80%</p>
Text with #EDEFDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEFDB;}
<p style="text-shadow: 3px 3px 1px #EDEFDB">Text here.</p>
This text has shadow with #EDEFDB color.
.textShadow {text-shadow: 3px 3px 1px #EDEFDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEFDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEFDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEFDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEFDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEFDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEFDB; -webkit-box-shadow: 1px 1px 3px 2px #EDEFDB; box-shadow: 1px 1px 3px 2px #EDEFDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEFDB; -webkit-box-shadow: 1px 1px 3px 2px #EDEFDB; box-shadow:1px 1px 3px 2px #EDEFDB;">
Div content here</div>
This text has color #EDEFDB on black background.
This text has color #EDEFDB on white background.
This text has black color on #EDEFDB background.
This text has white color on #EDEFDB background.