HEX: #EDEDDC
RGB: (237,237,220)
#EDEDDC contains red, green and blue colors in about the same proportion. Web safe color of #EDEDDC is #FFFFCC (or #FFC).
#EDEDDC color RGB value is (237,237,220).
RGB: (237,237,220) (93%,93%,86%)
R 237 of 255 = 93%
G 237 of 255 = 93%
B 220 of 255 = 86%
R + G + B ~ 91%. #EDEDDC is light color.
R + G + B =
237 + 237 + 220 = 694 (100%)
R 237 of 694 ~ 34.15%
G 237 of 694 ~ 34.15%
B 220 of 694 ~ 31.7%
#EDEDDC color CMYK value is (0,0,7,7).
CMYK: (0,0,7,7) C0M0Y7K7 (0%,0%,7%,7%) (0.00/0.00/0.07/0.07)
ED | ED | DC | |
---|---|---|---|
RGB | 237 | 237 | 220 |
HSL | 60° | 32.08% | 89.61% |
HSB/HSV | 60° | 7.17% | 92.94% |
CMYK | 0.00% | 0.00% | 7.17% |
7.06% |
HEX | ED | ED | DC |
Decimal | 237 | 237 | 220 |
Binary | 11101101 | 11101101 | 11011100 |
Octal | 355 | 355 | 334 |
Examples of css and html codes for elements with #EDEDDC color. Also use rgb(237,237,220) instead hex code.
.myTextColor { color: #EDEDDC; }
<p style="color:#EDEDDC">This sample text font color is #EDEDDC.</p>
This text font color is #EDEDDC.
.myBgColor { background-color: #EDEDDC; }
<div style="background-color:#EDEDDC">Inner text</div>
This div background color is #EDEDDC.
.myBorderColor { border: 1px solid #EDEDDC; }
<div style="border:3px solid #EDEDDC">Div</div>
This div border color is #EDEDDC.
.myOpacity80 { color: #EDEDDC; opacity: 0.8; }
<p style="color:#EDEDDC;opacity:0.8;">80%</p>
Text with #EDEDDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEDDC;}
<p style="text-shadow: 3px 3px 1px #EDEDDC">Text here.</p>
This text has shadow with #EDEDDC color.
.textShadow {text-shadow: 3px 3px 1px #EDEDDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEDDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEDDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEDDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEDDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEDDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEDDC; -webkit-box-shadow: 1px 1px 3px 2px #EDEDDC; box-shadow: 1px 1px 3px 2px #EDEDDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEDDC; -webkit-box-shadow: 1px 1px 3px 2px #EDEDDC; box-shadow:1px 1px 3px 2px #EDEDDC;">
Div content here</div>
This text has color #EDEDDC on black background.
This text has color #EDEDDC on white background.
This text has black color on #EDEDDC background.
This text has white color on #EDEDDC background.