HEX: #EDDC8C
RGB: (237,220,140)
#EDDC8C contains mainly red and green colors. Web safe color of #EDDC8C is #FFCC99 (or #FC9).
#EDDC8C color RGB value is (237,220,140).
RGB: (237,220,140) (93%,86%,55%)
R 237 of 255 = 93%
G 220 of 255 = 86%
B 140 of 255 = 55%
R + G + B ~ 78%. #EDDC8C is quite light color.
R + G + B =
237 + 220 + 140 = 597 (100%)
R 237 of 597 ~ 39.7%
G 220 of 597 ~ 36.85%
B 140 of 597 ~ 23.45%
#EDDC8C color CMYK value is (0,7,41,7).
CMYK: (0,7,41,7) C0M7Y41K7 (0%,7%,41%,7%) (0.00/0.07/0.41/0.07)
ED | DC | 8C | |
---|---|---|---|
RGB | 237 | 220 | 140 |
HSL | 49° | 72.93% | 73.92% |
HSB/HSV | 49° | 40.93% | 92.94% |
CMYK | 0.00% | 7.17% | 40.93% |
7.06% |
HEX | ED | DC | 8C |
Decimal | 237 | 220 | 140 |
Binary | 11101101 | 11011100 | 10001100 |
Octal | 355 | 334 | 214 |
Examples of css and html codes for elements with #EDDC8C color. Also use rgb(237,220,140) instead hex code.
.myTextColor { color: #EDDC8C; }
<p style="color:#EDDC8C">This sample text font color is #EDDC8C.</p>
This text font color is #EDDC8C.
.myBgColor { background-color: #EDDC8C; }
<div style="background-color:#EDDC8C">Inner text</div>
This div background color is #EDDC8C.
.myBorderColor { border: 1px solid #EDDC8C; }
<div style="border:3px solid #EDDC8C">Div</div>
This div border color is #EDDC8C.
.myOpacity80 { color: #EDDC8C; opacity: 0.8; }
<p style="color:#EDDC8C;opacity:0.8;">80%</p>
Text with #EDDC8C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDC8C;}
<p style="text-shadow: 3px 3px 1px #EDDC8C">Text here.</p>
This text has shadow with #EDDC8C color.
.textShadow {text-shadow: 3px 3px 1px #EDDC8C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDC8C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDC8C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDC8C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDC8C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDC8C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDC8C; -webkit-box-shadow: 1px 1px 3px 2px #EDDC8C; box-shadow: 1px 1px 3px 2px #EDDC8C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDC8C; -webkit-box-shadow: 1px 1px 3px 2px #EDDC8C; box-shadow:1px 1px 3px 2px #EDDC8C;">
Div content here</div>
This text has color #EDDC8C on black background.
This text has color #EDDC8C on white background.
This text has black color on #EDDC8C background.
This text has white color on #EDDC8C background.