HEX: #EDCCBC
RGB: (237,204,188)
#EDCCBC contains red, green and blue colors in about the same proportion. Web safe color of #EDCCBC is #FFCCCC (or #FCC).
#EDCCBC color RGB value is (237,204,188).
RGB: (237,204,188) (93%,80%,74%)
R 237 of 255 = 93%
G 204 of 255 = 80%
B 188 of 255 = 74%
R + G + B ~ 82%. #EDCCBC is quite light color.
R + G + B =
237 + 204 + 188 = 629 (100%)
R 237 of 629 ~ 37.68%
G 204 of 629 ~ 32.43%
B 188 of 629 ~ 29.89%
#EDCCBC color CMYK value is (0,14,21,7).
CMYK: (0,14,21,7) C0M14Y21K7 (0%,14%,21%,7%) (0.00/0.14/0.21/0.07)
ED | CC | BC | |
---|---|---|---|
RGB | 237 | 204 | 188 |
HSL | 20° | 57.65% | 83.33% |
HSB/HSV | 20° | 20.68% | 92.94% |
CMYK | 0.00% | 13.92% | 20.68% |
7.06% |
HEX | ED | CC | BC |
Decimal | 237 | 204 | 188 |
Binary | 11101101 | 11001100 | 10111100 |
Octal | 355 | 314 | 274 |
Examples of css and html codes for elements with #EDCCBC color. Also use rgb(237,204,188) instead hex code.
.myTextColor { color: #EDCCBC; }
<p style="color:#EDCCBC">This sample text font color is #EDCCBC.</p>
This text font color is #EDCCBC.
.myBgColor { background-color: #EDCCBC; }
<div style="background-color:#EDCCBC">Inner text</div>
This div background color is #EDCCBC.
.myBorderColor { border: 1px solid #EDCCBC; }
<div style="border:3px solid #EDCCBC">Div</div>
This div border color is #EDCCBC.
.myOpacity80 { color: #EDCCBC; opacity: 0.8; }
<p style="color:#EDCCBC;opacity:0.8;">80%</p>
Text with #EDCCBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCCBC;}
<p style="text-shadow: 3px 3px 1px #EDCCBC">Text here.</p>
This text has shadow with #EDCCBC color.
.textShadow {text-shadow: 3px 3px 1px #EDCCBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCCBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCCBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCCBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCCBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCCBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCCBC; -webkit-box-shadow: 1px 1px 3px 2px #EDCCBC; box-shadow: 1px 1px 3px 2px #EDCCBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCCBC; -webkit-box-shadow: 1px 1px 3px 2px #EDCCBC; box-shadow:1px 1px 3px 2px #EDCCBC;">
Div content here</div>
This text has color #EDCCBC on black background.
This text has color #EDCCBC on white background.
This text has black color on #EDCCBC background.
This text has white color on #EDCCBC background.