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