HEX: #FCE5DB
RGB: (252,229,219)
#FCE5DB contains red, green and blue colors in about the same proportion. Web safe color of #FCE5DB is #FFCCCC (or #FCC).
#FCE5DB color RGB value is (252,229,219).
RGB: (252,229,219) (99%,90%,86%)
R 252 of 255 = 99%
G 229 of 255 = 90%
B 219 of 255 = 86%
R + G + B ~ 92%. #FCE5DB is light color.
R + G + B =
252 + 229 + 219 = 700 (100%)
R 252 of 700 ~ 36%
G 229 of 700 ~ 32.71%
B 219 of 700 ~ 31.29%
#FCE5DB color CMYK value is (0,9,13,1).
CMYK: (0,9,13,1) C0M9Y13K1 (0%,9%,13%,1%) (0.00/0.09/0.13/0.01)
FC | E5 | DB | |
---|---|---|---|
RGB | 252 | 229 | 219 |
HSL | 18° | 84.62% | 92.35% |
HSB/HSV | 18° | 13.10% | 98.82% |
CMYK | 0.00% | 9.13% | 13.10% |
1.18% |
HEX | FC | E5 | DB |
Decimal | 252 | 229 | 219 |
Binary | 11111100 | 11100101 | 11011011 |
Octal | 374 | 345 | 333 |
Examples of css and html codes for elements with #FCE5DB color. Also use rgb(252,229,219) instead hex code.
.myTextColor { color: #FCE5DB; }
<p style="color:#FCE5DB">This sample text font color is #FCE5DB.</p>
This text font color is #FCE5DB.
.myBgColor { background-color: #FCE5DB; }
<div style="background-color:#FCE5DB">Inner text</div>
This div background color is #FCE5DB.
.myBorderColor { border: 1px solid #FCE5DB; }
<div style="border:3px solid #FCE5DB">Div</div>
This div border color is #FCE5DB.
.myOpacity80 { color: #FCE5DB; opacity: 0.8; }
<p style="color:#FCE5DB;opacity:0.8;">80%</p>
Text with #FCE5DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE5DB;}
<p style="text-shadow: 3px 3px 1px #FCE5DB">Text here.</p>
This text has shadow with #FCE5DB color.
.textShadow {text-shadow: 3px 3px 1px #FCE5DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE5DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE5DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE5DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE5DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE5DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE5DB; -webkit-box-shadow: 1px 1px 3px 2px #FCE5DB; box-shadow: 1px 1px 3px 2px #FCE5DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE5DB; -webkit-box-shadow: 1px 1px 3px 2px #FCE5DB; box-shadow:1px 1px 3px 2px #FCE5DB;">
Div content here</div>
This text has color #FCE5DB on black background.
This text has color #FCE5DB on white background.
This text has black color on #FCE5DB background.
This text has white color on #FCE5DB background.