HEX: #FCF1EB
RGB: (252,241,235)
#FCF1EB contains red, green and blue colors in about the same proportion. Web safe color of #FCF1EB is #FFFFFF (or #FFF).
#FCF1EB color RGB value is (252,241,235).
RGB: (252,241,235) (99%,95%,92%)
R 252 of 255 = 99%
G 241 of 255 = 95%
B 235 of 255 = 92%
R + G + B ~ 95%. #FCF1EB is light color.
R + G + B =
252 + 241 + 235 = 728 (100%)
R 252 of 728 ~ 34.62%
G 241 of 728 ~ 33.1%
B 235 of 728 ~ 32.28%
#FCF1EB color CMYK value is (0,4,7,1).
CMYK: (0,4,7,1) C0M4Y7K1 (0%,4%,7%,1%) (0.00/0.04/0.07/0.01)
FC | F1 | EB | |
---|---|---|---|
RGB | 252 | 241 | 235 |
HSL | 21° | 73.91% | 95.49% |
HSB/HSV | 21° | 6.75% | 98.82% |
CMYK | 0.00% | 4.37% | 6.75% |
1.18% |
HEX | FC | F1 | EB |
Decimal | 252 | 241 | 235 |
Binary | 11111100 | 11110001 | 11101011 |
Octal | 374 | 361 | 353 |
Examples of css and html codes for elements with #FCF1EB color. Also use rgb(252,241,235) instead hex code.
.myTextColor { color: #FCF1EB; }
<p style="color:#FCF1EB">This sample text font color is #FCF1EB.</p>
This text font color is #FCF1EB.
.myBgColor { background-color: #FCF1EB; }
<div style="background-color:#FCF1EB">Inner text</div>
This div background color is #FCF1EB.
.myBorderColor { border: 1px solid #FCF1EB; }
<div style="border:3px solid #FCF1EB">Div</div>
This div border color is #FCF1EB.
.myOpacity80 { color: #FCF1EB; opacity: 0.8; }
<p style="color:#FCF1EB;opacity:0.8;">80%</p>
Text with #FCF1EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF1EB;}
<p style="text-shadow: 3px 3px 1px #FCF1EB">Text here.</p>
This text has shadow with #FCF1EB color.
.textShadow {text-shadow: 3px 3px 1px #FCF1EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF1EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF1EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF1EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF1EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF1EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF1EB; -webkit-box-shadow: 1px 1px 3px 2px #FCF1EB; box-shadow: 1px 1px 3px 2px #FCF1EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF1EB; -webkit-box-shadow: 1px 1px 3px 2px #FCF1EB; box-shadow:1px 1px 3px 2px #FCF1EB;">
Div content here</div>
This text has color #FCF1EB on black background.
This text has color #FCF1EB on white background.
This text has black color on #FCF1EB background.
This text has white color on #FCF1EB background.