HEX: #FCF9FB
RGB: (252,249,251)
#FCF9FB contains red, green and blue colors in about the same proportion. Web safe color of #FCF9FB is #FFFFFF (or #FFF).
#FCF9FB color RGB value is (252,249,251).
RGB: (252,249,251) (99%,98%,98%)
R 252 of 255 = 99%
G 249 of 255 = 98%
B 251 of 255 = 98%
R + G + B ~ 98%. #FCF9FB is light color.
R + G + B =
252 + 249 + 251 = 752 (100%)
R 252 of 752 ~ 33.51%
G 249 of 752 ~ 33.11%
B 251 of 752 ~ 33.38%
#FCF9FB color CMYK value is (0,1,0,1).
CMYK: (0,1,0,1) C0M1Y0K1 (0%,1%,0%,1%) (0.00/0.01/0.00/0.01)
FC | F9 | FB | |
---|---|---|---|
RGB | 252 | 249 | 251 |
HSL | 320° | 33.33% | 98.24% |
HSB/HSV | 320° | 1.19% | 98.82% |
CMYK | 0.00% | 1.19% | 0.40% |
1.18% |
HEX | FC | F9 | FB |
Decimal | 252 | 249 | 251 |
Binary | 11111100 | 11111001 | 11111011 |
Octal | 374 | 371 | 373 |
Examples of css and html codes for elements with #FCF9FB color. Also use rgb(252,249,251) instead hex code.
.myTextColor { color: #FCF9FB; }
<p style="color:#FCF9FB">This sample text font color is #FCF9FB.</p>
This text font color is #FCF9FB.
.myBgColor { background-color: #FCF9FB; }
<div style="background-color:#FCF9FB">Inner text</div>
This div background color is #FCF9FB.
.myBorderColor { border: 1px solid #FCF9FB; }
<div style="border:3px solid #FCF9FB">Div</div>
This div border color is #FCF9FB.
.myOpacity80 { color: #FCF9FB; opacity: 0.8; }
<p style="color:#FCF9FB;opacity:0.8;">80%</p>
Text with #FCF9FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF9FB;}
<p style="text-shadow: 3px 3px 1px #FCF9FB">Text here.</p>
This text has shadow with #FCF9FB color.
.textShadow {text-shadow: 3px 3px 1px #FCF9FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF9FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF9FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF9FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF9FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF9FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF9FB; -webkit-box-shadow: 1px 1px 3px 2px #FCF9FB; box-shadow: 1px 1px 3px 2px #FCF9FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF9FB; -webkit-box-shadow: 1px 1px 3px 2px #FCF9FB; box-shadow:1px 1px 3px 2px #FCF9FB;">
Div content here</div>
This text has color #FCF9FB on black background.
This text has color #FCF9FB on white background.
This text has black color on #FCF9FB background.
This text has white color on #FCF9FB background.