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