HEX: #EDD0CE
RGB: (237,208,206)
#EDD0CE contains red, green and blue colors in about the same proportion. Web safe color of #EDD0CE is #FFCCCC (or #FCC).
#EDD0CE color RGB value is (237,208,206).
RGB: (237,208,206) (93%,82%,81%)
R 237 of 255 = 93%
G 208 of 255 = 82%
B 206 of 255 = 81%
R + G + B ~ 85%. #EDD0CE is quite light color.
R + G + B =
237 + 208 + 206 = 651 (100%)
R 237 of 651 ~ 36.41%
G 208 of 651 ~ 31.95%
B 206 of 651 ~ 31.64%
#EDD0CE color CMYK value is (0,12,13,7).
CMYK: (0,12,13,7) C0M12Y13K7 (0%,12%,13%,7%) (0.00/0.12/0.13/0.07)
ED | D0 | CE | |
---|---|---|---|
RGB | 237 | 208 | 206 |
HSL | 4° | 46.27% | 86.86% |
HSB/HSV | 4° | 13.08% | 92.94% |
CMYK | 0.00% | 12.24% | 13.08% |
7.06% |
HEX | ED | D0 | CE |
Decimal | 237 | 208 | 206 |
Binary | 11101101 | 11010000 | 11001110 |
Octal | 355 | 320 | 316 |
Examples of css and html codes for elements with #EDD0CE color. Also use rgb(237,208,206) instead hex code.
.myTextColor { color: #EDD0CE; }
<p style="color:#EDD0CE">This sample text font color is #EDD0CE.</p>
This text font color is #EDD0CE.
.myBgColor { background-color: #EDD0CE; }
<div style="background-color:#EDD0CE">Inner text</div>
This div background color is #EDD0CE.
.myBorderColor { border: 1px solid #EDD0CE; }
<div style="border:3px solid #EDD0CE">Div</div>
This div border color is #EDD0CE.
.myOpacity80 { color: #EDD0CE; opacity: 0.8; }
<p style="color:#EDD0CE;opacity:0.8;">80%</p>
Text with #EDD0CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDD0CE;}
<p style="text-shadow: 3px 3px 1px #EDD0CE">Text here.</p>
This text has shadow with #EDD0CE color.
.textShadow {text-shadow: 3px 3px 1px #EDD0CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDD0CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDD0CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDD0CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDD0CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDD0CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDD0CE; -webkit-box-shadow: 1px 1px 3px 2px #EDD0CE; box-shadow: 1px 1px 3px 2px #EDD0CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDD0CE; -webkit-box-shadow: 1px 1px 3px 2px #EDD0CE; box-shadow:1px 1px 3px 2px #EDD0CE;">
Div content here</div>
This text has color #EDD0CE on black background.
This text has color #EDD0CE on white background.
This text has black color on #EDD0CE background.
This text has white color on #EDD0CE background.