HEX: #FCF8BC
RGB: (252,248,188)
#FCF8BC contains mainly red and green colors. Web safe color of #FCF8BC is #FFFFCC (or #FFC).
#FCF8BC color RGB value is (252,248,188).
RGB: (252,248,188) (99%,97%,74%)
R 252 of 255 = 99%
G 248 of 255 = 97%
B 188 of 255 = 74%
R + G + B ~ 90%. #FCF8BC is light color.
R + G + B =
252 + 248 + 188 = 688 (100%)
R 252 of 688 ~ 36.63%
G 248 of 688 ~ 36.05%
B 188 of 688 ~ 27.33%
#FCF8BC color CMYK value is (0,2,25,1).
CMYK: (0,2,25,1) C0M2Y25K1 (0%,2%,25%,1%) (0.00/0.02/0.25/0.01)
FC | F8 | BC | |
---|---|---|---|
RGB | 252 | 248 | 188 |
HSL | 56° | 91.43% | 86.27% |
HSB/HSV | 56° | 25.40% | 98.82% |
CMYK | 0.00% | 1.59% | 25.40% |
1.18% |
HEX | FC | F8 | BC |
Decimal | 252 | 248 | 188 |
Binary | 11111100 | 11111000 | 10111100 |
Octal | 374 | 370 | 274 |
Examples of css and html codes for elements with #FCF8BC color. Also use rgb(252,248,188) instead hex code.
.myTextColor { color: #FCF8BC; }
<p style="color:#FCF8BC">This sample text font color is #FCF8BC.</p>
This text font color is #FCF8BC.
.myBgColor { background-color: #FCF8BC; }
<div style="background-color:#FCF8BC">Inner text</div>
This div background color is #FCF8BC.
.myBorderColor { border: 1px solid #FCF8BC; }
<div style="border:3px solid #FCF8BC">Div</div>
This div border color is #FCF8BC.
.myOpacity80 { color: #FCF8BC; opacity: 0.8; }
<p style="color:#FCF8BC;opacity:0.8;">80%</p>
Text with #FCF8BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF8BC;}
<p style="text-shadow: 3px 3px 1px #FCF8BC">Text here.</p>
This text has shadow with #FCF8BC color.
.textShadow {text-shadow: 3px 3px 1px #FCF8BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF8BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF8BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF8BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF8BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF8BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF8BC; -webkit-box-shadow: 1px 1px 3px 2px #FCF8BC; box-shadow: 1px 1px 3px 2px #FCF8BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF8BC; -webkit-box-shadow: 1px 1px 3px 2px #FCF8BC; box-shadow:1px 1px 3px 2px #FCF8BC;">
Div content here</div>
This text has color #FCF8BC on black background.
This text has color #FCF8BC on white background.
This text has black color on #FCF8BC background.
This text has white color on #FCF8BC background.