HEX: #FCE2EF
RGB: (252,226,239)
#FCE2EF contains red, green and blue colors in about the same proportion. Web safe color of #FCE2EF is #FFCCFF (or #FCF).
#FCE2EF color RGB value is (252,226,239).
RGB: (252,226,239) (99%,89%,94%)
R 252 of 255 = 99%
G 226 of 255 = 89%
B 239 of 255 = 94%
R + G + B ~ 94%. #FCE2EF is light color.
R + G + B =
252 + 226 + 239 = 717 (100%)
R 252 of 717 ~ 35.15%
G 226 of 717 ~ 31.52%
B 239 of 717 ~ 33.33%
#FCE2EF color CMYK value is (0,10,5,1).
CMYK: (0,10,5,1) C0M10Y5K1 (0%,10%,5%,1%) (0.00/0.10/0.05/0.01)
FC | E2 | EF | |
---|---|---|---|
RGB | 252 | 226 | 239 |
HSL | 330° | 81.25% | 93.73% |
HSB/HSV | 330° | 10.32% | 98.82% |
CMYK | 0.00% | 10.32% | 5.16% |
1.18% |
HEX | FC | E2 | EF |
Decimal | 252 | 226 | 239 |
Binary | 11111100 | 11100010 | 11101111 |
Octal | 374 | 342 | 357 |
Examples of css and html codes for elements with #FCE2EF color. Also use rgb(252,226,239) instead hex code.
.myTextColor { color: #FCE2EF; }
<p style="color:#FCE2EF">This sample text font color is #FCE2EF.</p>
This text font color is #FCE2EF.
.myBgColor { background-color: #FCE2EF; }
<div style="background-color:#FCE2EF">Inner text</div>
This div background color is #FCE2EF.
.myBorderColor { border: 1px solid #FCE2EF; }
<div style="border:3px solid #FCE2EF">Div</div>
This div border color is #FCE2EF.
.myOpacity80 { color: #FCE2EF; opacity: 0.8; }
<p style="color:#FCE2EF;opacity:0.8;">80%</p>
Text with #FCE2EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE2EF;}
<p style="text-shadow: 3px 3px 1px #FCE2EF">Text here.</p>
This text has shadow with #FCE2EF color.
.textShadow {text-shadow: 3px 3px 1px #FCE2EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE2EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE2EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE2EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE2EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE2EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE2EF; -webkit-box-shadow: 1px 1px 3px 2px #FCE2EF; box-shadow: 1px 1px 3px 2px #FCE2EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE2EF; -webkit-box-shadow: 1px 1px 3px 2px #FCE2EF; box-shadow:1px 1px 3px 2px #FCE2EF;">
Div content here</div>
This text has color #FCE2EF on black background.
This text has color #FCE2EF on white background.
This text has black color on #FCE2EF background.
This text has white color on #FCE2EF background.