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