HEX: #EFCECC
RGB: (239,206,204)
#EFCECC contains red, green and blue colors in about the same proportion. Web safe color of #EFCECC is #FFCCCC (or #FCC).
#EFCECC color RGB value is (239,206,204).
RGB: (239,206,204) (94%,81%,80%)
R 239 of 255 = 94%
G 206 of 255 = 81%
B 204 of 255 = 80%
R + G + B ~ 85%. #EFCECC is quite light color.
R + G + B =
239 + 206 + 204 = 649 (100%)
R 239 of 649 ~ 36.83%
G 206 of 649 ~ 31.74%
B 204 of 649 ~ 31.43%
#EFCECC color CMYK value is (0,14,15,6).
CMYK: (0,14,15,6) C0M14Y15K6 (0%,14%,15%,6%) (0.00/0.14/0.15/0.06)
EF | CE | CC | |
---|---|---|---|
RGB | 239 | 206 | 204 |
HSL | 3° | 52.24% | 86.86% |
HSB/HSV | 3° | 14.64% | 93.73% |
CMYK | 0.00% | 13.81% | 14.64% |
6.27% |
HEX | EF | CE | CC |
Decimal | 239 | 206 | 204 |
Binary | 11101111 | 11001110 | 11001100 |
Octal | 357 | 316 | 314 |
Examples of css and html codes for elements with #EFCECC color. Also use rgb(239,206,204) instead hex code.
.myTextColor { color: #EFCECC; }
<p style="color:#EFCECC">This sample text font color is #EFCECC.</p>
This text font color is #EFCECC.
.myBgColor { background-color: #EFCECC; }
<div style="background-color:#EFCECC">Inner text</div>
This div background color is #EFCECC.
.myBorderColor { border: 1px solid #EFCECC; }
<div style="border:3px solid #EFCECC">Div</div>
This div border color is #EFCECC.
.myOpacity80 { color: #EFCECC; opacity: 0.8; }
<p style="color:#EFCECC;opacity:0.8;">80%</p>
Text with #EFCECC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCECC;}
<p style="text-shadow: 3px 3px 1px #EFCECC">Text here.</p>
This text has shadow with #EFCECC color.
.textShadow {text-shadow: 3px 3px 1px #EFCECC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCECC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCECC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCECC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCECC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCECC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCECC; -webkit-box-shadow: 1px 1px 3px 2px #EFCECC; box-shadow: 1px 1px 3px 2px #EFCECC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCECC; -webkit-box-shadow: 1px 1px 3px 2px #EFCECC; box-shadow:1px 1px 3px 2px #EFCECC;">
Div content here</div>
This text has color #EFCECC on black background.
This text has color #EFCECC on white background.
This text has black color on #EFCECC background.
This text has white color on #EFCECC background.