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