HEX: #FCF0EC
RGB: (252,240,236)
#FCF0EC contains red, green and blue colors in about the same proportion. Web safe color of #FCF0EC is #FFFFFF (or #FFF).
#FCF0EC color RGB value is (252,240,236).
RGB: (252,240,236) (99%,94%,93%)
R 252 of 255 = 99%
G 240 of 255 = 94%
B 236 of 255 = 93%
R + G + B ~ 95%. #FCF0EC is light color.
R + G + B =
252 + 240 + 236 = 728 (100%)
R 252 of 728 ~ 34.62%
G 240 of 728 ~ 32.97%
B 236 of 728 ~ 32.42%
#FCF0EC color CMYK value is (0,5,6,1).
CMYK: (0,5,6,1) C0M5Y6K1 (0%,5%,6%,1%) (0.00/0.05/0.06/0.01)
FC | F0 | EC | |
---|---|---|---|
RGB | 252 | 240 | 236 |
HSL | 15° | 72.73% | 95.69% |
HSB/HSV | 15° | 6.35% | 98.82% |
CMYK | 0.00% | 4.76% | 6.35% |
1.18% |
HEX | FC | F0 | EC |
Decimal | 252 | 240 | 236 |
Binary | 11111100 | 11110000 | 11101100 |
Octal | 374 | 360 | 354 |
Examples of css and html codes for elements with #FCF0EC color. Also use rgb(252,240,236) instead hex code.
.myTextColor { color: #FCF0EC; }
<p style="color:#FCF0EC">This sample text font color is #FCF0EC.</p>
This text font color is #FCF0EC.
.myBgColor { background-color: #FCF0EC; }
<div style="background-color:#FCF0EC">Inner text</div>
This div background color is #FCF0EC.
.myBorderColor { border: 1px solid #FCF0EC; }
<div style="border:3px solid #FCF0EC">Div</div>
This div border color is #FCF0EC.
.myOpacity80 { color: #FCF0EC; opacity: 0.8; }
<p style="color:#FCF0EC;opacity:0.8;">80%</p>
Text with #FCF0EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF0EC;}
<p style="text-shadow: 3px 3px 1px #FCF0EC">Text here.</p>
This text has shadow with #FCF0EC color.
.textShadow {text-shadow: 3px 3px 1px #FCF0EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF0EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF0EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF0EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF0EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF0EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF0EC; -webkit-box-shadow: 1px 1px 3px 2px #FCF0EC; box-shadow: 1px 1px 3px 2px #FCF0EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF0EC; -webkit-box-shadow: 1px 1px 3px 2px #FCF0EC; box-shadow:1px 1px 3px 2px #FCF0EC;">
Div content here</div>
This text has color #FCF0EC on black background.
This text has color #FCF0EC on white background.
This text has black color on #FCF0EC background.
This text has white color on #FCF0EC background.