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