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