HEX: #EDDFCC
RGB: (237,223,204)
#EDDFCC contains red, green and blue colors in about the same proportion. Web safe color of #EDDFCC is #FFCCCC (or #FCC).
#EDDFCC color RGB value is (237,223,204).
RGB: (237,223,204) (93%,87%,80%)
R 237 of 255 = 93%
G 223 of 255 = 87%
B 204 of 255 = 80%
R + G + B ~ 87%. #EDDFCC is light color.
R + G + B =
237 + 223 + 204 = 664 (100%)
R 237 of 664 ~ 35.69%
G 223 of 664 ~ 33.58%
B 204 of 664 ~ 30.72%
#EDDFCC color CMYK value is (0,6,14,7).
CMYK: (0,6,14,7) C0M6Y14K7 (0%,6%,14%,7%) (0.00/0.06/0.14/0.07)
ED | DF | CC | |
---|---|---|---|
RGB | 237 | 223 | 204 |
HSL | 35° | 47.83% | 86.47% |
HSB/HSV | 35° | 13.92% | 92.94% |
CMYK | 0.00% | 5.91% | 13.92% |
7.06% |
HEX | ED | DF | CC |
Decimal | 237 | 223 | 204 |
Binary | 11101101 | 11011111 | 11001100 |
Octal | 355 | 337 | 314 |
Examples of css and html codes for elements with #EDDFCC color. Also use rgb(237,223,204) instead hex code.
.myTextColor { color: #EDDFCC; }
<p style="color:#EDDFCC">This sample text font color is #EDDFCC.</p>
This text font color is #EDDFCC.
.myBgColor { background-color: #EDDFCC; }
<div style="background-color:#EDDFCC">Inner text</div>
This div background color is #EDDFCC.
.myBorderColor { border: 1px solid #EDDFCC; }
<div style="border:3px solid #EDDFCC">Div</div>
This div border color is #EDDFCC.
.myOpacity80 { color: #EDDFCC; opacity: 0.8; }
<p style="color:#EDDFCC;opacity:0.8;">80%</p>
Text with #EDDFCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDFCC;}
<p style="text-shadow: 3px 3px 1px #EDDFCC">Text here.</p>
This text has shadow with #EDDFCC color.
.textShadow {text-shadow: 3px 3px 1px #EDDFCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDFCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDFCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDFCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDFCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDFCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDFCC; -webkit-box-shadow: 1px 1px 3px 2px #EDDFCC; box-shadow: 1px 1px 3px 2px #EDDFCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDFCC; -webkit-box-shadow: 1px 1px 3px 2px #EDDFCC; box-shadow:1px 1px 3px 2px #EDDFCC;">
Div content here</div>
This text has color #EDDFCC on black background.
This text has color #EDDFCC on white background.
This text has black color on #EDDFCC background.
This text has white color on #EDDFCC background.