HEX: #FCF5DE
RGB: (252,245,222)
#FCF5DE contains red, green and blue colors in about the same proportion. Web safe color of #FCF5DE is #FFFFCC (or #FFC).
#FCF5DE color RGB value is (252,245,222).
RGB: (252,245,222) (99%,96%,87%)
R 252 of 255 = 99%
G 245 of 255 = 96%
B 222 of 255 = 87%
R + G + B ~ 94%. #FCF5DE is light color.
R + G + B =
252 + 245 + 222 = 719 (100%)
R 252 of 719 ~ 35.05%
G 245 of 719 ~ 34.08%
B 222 of 719 ~ 30.88%
#FCF5DE color CMYK value is (0,3,12,1).
CMYK: (0,3,12,1) C0M3Y12K1 (0%,3%,12%,1%) (0.00/0.03/0.12/0.01)
FC | F5 | DE | |
---|---|---|---|
RGB | 252 | 245 | 222 |
HSL | 46° | 83.33% | 92.94% |
HSB/HSV | 46° | 11.90% | 98.82% |
CMYK | 0.00% | 2.78% | 11.90% |
1.18% |
HEX | FC | F5 | DE |
Decimal | 252 | 245 | 222 |
Binary | 11111100 | 11110101 | 11011110 |
Octal | 374 | 365 | 336 |
Examples of css and html codes for elements with #FCF5DE color. Also use rgb(252,245,222) instead hex code.
.myTextColor { color: #FCF5DE; }
<p style="color:#FCF5DE">This sample text font color is #FCF5DE.</p>
This text font color is #FCF5DE.
.myBgColor { background-color: #FCF5DE; }
<div style="background-color:#FCF5DE">Inner text</div>
This div background color is #FCF5DE.
.myBorderColor { border: 1px solid #FCF5DE; }
<div style="border:3px solid #FCF5DE">Div</div>
This div border color is #FCF5DE.
.myOpacity80 { color: #FCF5DE; opacity: 0.8; }
<p style="color:#FCF5DE;opacity:0.8;">80%</p>
Text with #FCF5DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF5DE;}
<p style="text-shadow: 3px 3px 1px #FCF5DE">Text here.</p>
This text has shadow with #FCF5DE color.
.textShadow {text-shadow: 3px 3px 1px #FCF5DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF5DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF5DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF5DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF5DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF5DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF5DE; -webkit-box-shadow: 1px 1px 3px 2px #FCF5DE; box-shadow: 1px 1px 3px 2px #FCF5DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF5DE; -webkit-box-shadow: 1px 1px 3px 2px #FCF5DE; box-shadow:1px 1px 3px 2px #FCF5DE;">
Div content here</div>
This text has color #FCF5DE on black background.
This text has color #FCF5DE on white background.
This text has black color on #FCF5DE background.
This text has white color on #FCF5DE background.