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