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