HEX: #EDC7BF
RGB: (237,199,191)
#EDC7BF contains red, green and blue colors in about the same proportion. Web safe color of #EDC7BF is #FFCCCC (or #FCC).
#EDC7BF color RGB value is (237,199,191).
RGB: (237,199,191) (93%,78%,75%)
R 237 of 255 = 93%
G 199 of 255 = 78%
B 191 of 255 = 75%
R + G + B ~ 82%. #EDC7BF is quite light color.
R + G + B =
237 + 199 + 191 = 627 (100%)
R 237 of 627 ~ 37.8%
G 199 of 627 ~ 31.74%
B 191 of 627 ~ 30.46%
#EDC7BF color CMYK value is (0,16,19,7).
CMYK: (0,16,19,7) C0M16Y19K7 (0%,16%,19%,7%) (0.00/0.16/0.19/0.07)
ED | C7 | BF | |
---|---|---|---|
RGB | 237 | 199 | 191 |
HSL | 10° | 56.10% | 83.92% |
HSB/HSV | 10° | 19.41% | 92.94% |
CMYK | 0.00% | 16.03% | 19.41% |
7.06% |
HEX | ED | C7 | BF |
Decimal | 237 | 199 | 191 |
Binary | 11101101 | 11000111 | 10111111 |
Octal | 355 | 307 | 277 |
Examples of css and html codes for elements with #EDC7BF color. Also use rgb(237,199,191) instead hex code.
.myTextColor { color: #EDC7BF; }
<p style="color:#EDC7BF">This sample text font color is #EDC7BF.</p>
This text font color is #EDC7BF.
.myBgColor { background-color: #EDC7BF; }
<div style="background-color:#EDC7BF">Inner text</div>
This div background color is #EDC7BF.
.myBorderColor { border: 1px solid #EDC7BF; }
<div style="border:3px solid #EDC7BF">Div</div>
This div border color is #EDC7BF.
.myOpacity80 { color: #EDC7BF; opacity: 0.8; }
<p style="color:#EDC7BF;opacity:0.8;">80%</p>
Text with #EDC7BF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC7BF;}
<p style="text-shadow: 3px 3px 1px #EDC7BF">Text here.</p>
This text has shadow with #EDC7BF color.
.textShadow {text-shadow: 3px 3px 1px #EDC7BF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC7BF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC7BF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC7BF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC7BF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC7BF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC7BF; -webkit-box-shadow: 1px 1px 3px 2px #EDC7BF; box-shadow: 1px 1px 3px 2px #EDC7BF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC7BF; -webkit-box-shadow: 1px 1px 3px 2px #EDC7BF; box-shadow:1px 1px 3px 2px #EDC7BF;">
Div content here</div>
This text has color #EDC7BF on black background.
This text has color #EDC7BF on white background.
This text has black color on #EDC7BF background.
This text has white color on #EDC7BF background.