HEX: #EDEFD4
RGB: (237,239,212)
#EDEFD4 contains red, green and blue colors in about the same proportion. Web safe color of #EDEFD4 is #FFFFCC (or #FFC).
#EDEFD4 color RGB value is (237,239,212).
RGB: (237,239,212) (93%,94%,83%)
R 237 of 255 = 93%
G 239 of 255 = 94%
B 212 of 255 = 83%
R + G + B ~ 90%. #EDEFD4 is light color.
R + G + B =
237 + 239 + 212 = 688 (100%)
R 237 of 688 ~ 34.45%
G 239 of 688 ~ 34.74%
B 212 of 688 ~ 30.81%
#EDEFD4 color CMYK value is (1,0,11,6).
CMYK: (1,0,11,6) C1M0Y11K6 (1%,0%,11%,6%) (0.01/0.00/0.11/0.06)
ED | EF | D4 | |
---|---|---|---|
RGB | 237 | 239 | 212 |
HSL | 64° | 45.76% | 88.43% |
HSB/HSV | 64° | 11.30% | 93.73% |
CMYK | 0.84% | 0.00% | 11.30% |
6.27% |
HEX | ED | EF | D4 |
Decimal | 237 | 239 | 212 |
Binary | 11101101 | 11101111 | 11010100 |
Octal | 355 | 357 | 324 |
Examples of css and html codes for elements with #EDEFD4 color. Also use rgb(237,239,212) instead hex code.
.myTextColor { color: #EDEFD4; }
<p style="color:#EDEFD4">This sample text font color is #EDEFD4.</p>
This text font color is #EDEFD4.
.myBgColor { background-color: #EDEFD4; }
<div style="background-color:#EDEFD4">Inner text</div>
This div background color is #EDEFD4.
.myBorderColor { border: 1px solid #EDEFD4; }
<div style="border:3px solid #EDEFD4">Div</div>
This div border color is #EDEFD4.
.myOpacity80 { color: #EDEFD4; opacity: 0.8; }
<p style="color:#EDEFD4;opacity:0.8;">80%</p>
Text with #EDEFD4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEFD4;}
<p style="text-shadow: 3px 3px 1px #EDEFD4">Text here.</p>
This text has shadow with #EDEFD4 color.
.textShadow {text-shadow: 3px 3px 1px #EDEFD4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEFD4, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEFD4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEFD4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEFD4, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEFD4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEFD4; -webkit-box-shadow: 1px 1px 3px 2px #EDEFD4; box-shadow: 1px 1px 3px 2px #EDEFD4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEFD4; -webkit-box-shadow: 1px 1px 3px 2px #EDEFD4; box-shadow:1px 1px 3px 2px #EDEFD4;">
Div content here</div>
This text has color #EDEFD4 on black background.
This text has color #EDEFD4 on white background.
This text has black color on #EDEFD4 background.
This text has white color on #EDEFD4 background.