HEX: #FCE3DF
RGB: (252,227,223)
#FCE3DF contains red, green and blue colors in about the same proportion. Web safe color of #FCE3DF is #FFCCCC (or #FCC).
#FCE3DF color RGB value is (252,227,223).
RGB: (252,227,223) (99%,89%,87%)
R 252 of 255 = 99%
G 227 of 255 = 89%
B 223 of 255 = 87%
R + G + B ~ 92%. #FCE3DF is light color.
R + G + B =
252 + 227 + 223 = 702 (100%)
R 252 of 702 ~ 35.9%
G 227 of 702 ~ 32.34%
B 223 of 702 ~ 31.77%
#FCE3DF color CMYK value is (0,10,12,1).
CMYK: (0,10,12,1) C0M10Y12K1 (0%,10%,12%,1%) (0.00/0.10/0.12/0.01)
FC | E3 | DF | |
---|---|---|---|
RGB | 252 | 227 | 223 |
HSL | 8° | 82.86% | 93.14% |
HSB/HSV | 8° | 11.51% | 98.82% |
CMYK | 0.00% | 9.92% | 11.51% |
1.18% |
HEX | FC | E3 | DF |
Decimal | 252 | 227 | 223 |
Binary | 11111100 | 11100011 | 11011111 |
Octal | 374 | 343 | 337 |
Examples of css and html codes for elements with #FCE3DF color. Also use rgb(252,227,223) instead hex code.
.myTextColor { color: #FCE3DF; }
<p style="color:#FCE3DF">This sample text font color is #FCE3DF.</p>
This text font color is #FCE3DF.
.myBgColor { background-color: #FCE3DF; }
<div style="background-color:#FCE3DF">Inner text</div>
This div background color is #FCE3DF.
.myBorderColor { border: 1px solid #FCE3DF; }
<div style="border:3px solid #FCE3DF">Div</div>
This div border color is #FCE3DF.
.myOpacity80 { color: #FCE3DF; opacity: 0.8; }
<p style="color:#FCE3DF;opacity:0.8;">80%</p>
Text with #FCE3DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE3DF;}
<p style="text-shadow: 3px 3px 1px #FCE3DF">Text here.</p>
This text has shadow with #FCE3DF color.
.textShadow {text-shadow: 3px 3px 1px #FCE3DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE3DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE3DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE3DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE3DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE3DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE3DF; -webkit-box-shadow: 1px 1px 3px 2px #FCE3DF; box-shadow: 1px 1px 3px 2px #FCE3DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE3DF; -webkit-box-shadow: 1px 1px 3px 2px #FCE3DF; box-shadow:1px 1px 3px 2px #FCE3DF;">
Div content here</div>
This text has color #FCE3DF on black background.
This text has color #FCE3DF on white background.
This text has black color on #FCE3DF background.
This text has white color on #FCE3DF background.