HEX: #EDC6BD
RGB: (237,198,189)
#EDC6BD contains red, green and blue colors in about the same proportion. Web safe color of #EDC6BD is #FFCCCC (or #FCC).
#EDC6BD color RGB value is (237,198,189).
RGB: (237,198,189) (93%,78%,74%)
R 237 of 255 = 93%
G 198 of 255 = 78%
B 189 of 255 = 74%
R + G + B ~ 82%. #EDC6BD is quite light color.
R + G + B =
237 + 198 + 189 = 624 (100%)
R 237 of 624 ~ 37.98%
G 198 of 624 ~ 31.73%
B 189 of 624 ~ 30.29%
#EDC6BD color CMYK value is (0,16,20,7).
CMYK: (0,16,20,7) C0M16Y20K7 (0%,16%,20%,7%) (0.00/0.16/0.20/0.07)
ED | C6 | BD | |
---|---|---|---|
RGB | 237 | 198 | 189 |
HSL | 11° | 57.14% | 83.53% |
HSB/HSV | 11° | 20.25% | 92.94% |
CMYK | 0.00% | 16.46% | 20.25% |
7.06% |
HEX | ED | C6 | BD |
Decimal | 237 | 198 | 189 |
Binary | 11101101 | 11000110 | 10111101 |
Octal | 355 | 306 | 275 |
Examples of css and html codes for elements with #EDC6BD color. Also use rgb(237,198,189) instead hex code.
.myTextColor { color: #EDC6BD; }
<p style="color:#EDC6BD">This sample text font color is #EDC6BD.</p>
This text font color is #EDC6BD.
.myBgColor { background-color: #EDC6BD; }
<div style="background-color:#EDC6BD">Inner text</div>
This div background color is #EDC6BD.
.myBorderColor { border: 1px solid #EDC6BD; }
<div style="border:3px solid #EDC6BD">Div</div>
This div border color is #EDC6BD.
.myOpacity80 { color: #EDC6BD; opacity: 0.8; }
<p style="color:#EDC6BD;opacity:0.8;">80%</p>
Text with #EDC6BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC6BD;}
<p style="text-shadow: 3px 3px 1px #EDC6BD">Text here.</p>
This text has shadow with #EDC6BD color.
.textShadow {text-shadow: 3px 3px 1px #EDC6BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC6BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC6BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC6BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC6BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC6BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC6BD; -webkit-box-shadow: 1px 1px 3px 2px #EDC6BD; box-shadow: 1px 1px 3px 2px #EDC6BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC6BD; -webkit-box-shadow: 1px 1px 3px 2px #EDC6BD; box-shadow:1px 1px 3px 2px #EDC6BD;">
Div content here</div>
This text has color #EDC6BD on black background.
This text has color #EDC6BD on white background.
This text has black color on #EDC6BD background.
This text has white color on #EDC6BD background.