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