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