HEX: #FCF6ED
RGB: (252,246,237)
#FCF6ED contains red, green and blue colors in about the same proportion. Web safe color of #FCF6ED is #FFFFFF (or #FFF).
#FCF6ED color RGB value is (252,246,237).
RGB: (252,246,237) (99%,96%,93%)
R 252 of 255 = 99%
G 246 of 255 = 96%
B 237 of 255 = 93%
R + G + B ~ 96%. #FCF6ED is light color.
R + G + B =
252 + 246 + 237 = 735 (100%)
R 252 of 735 ~ 34.29%
G 246 of 735 ~ 33.47%
B 237 of 735 ~ 32.24%
#FCF6ED color CMYK value is (0,2,6,1).
CMYK: (0,2,6,1) C0M2Y6K1 (0%,2%,6%,1%) (0.00/0.02/0.06/0.01)
FC | F6 | ED | |
---|---|---|---|
RGB | 252 | 246 | 237 |
HSL | 36° | 71.43% | 95.88% |
HSB/HSV | 36° | 5.95% | 98.82% |
CMYK | 0.00% | 2.38% | 5.95% |
1.18% |
HEX | FC | F6 | ED |
Decimal | 252 | 246 | 237 |
Binary | 11111100 | 11110110 | 11101101 |
Octal | 374 | 366 | 355 |
Examples of css and html codes for elements with #FCF6ED color. Also use rgb(252,246,237) instead hex code.
.myTextColor { color: #FCF6ED; }
<p style="color:#FCF6ED">This sample text font color is #FCF6ED.</p>
This text font color is #FCF6ED.
.myBgColor { background-color: #FCF6ED; }
<div style="background-color:#FCF6ED">Inner text</div>
This div background color is #FCF6ED.
.myBorderColor { border: 1px solid #FCF6ED; }
<div style="border:3px solid #FCF6ED">Div</div>
This div border color is #FCF6ED.
.myOpacity80 { color: #FCF6ED; opacity: 0.8; }
<p style="color:#FCF6ED;opacity:0.8;">80%</p>
Text with #FCF6ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF6ED;}
<p style="text-shadow: 3px 3px 1px #FCF6ED">Text here.</p>
This text has shadow with #FCF6ED color.
.textShadow {text-shadow: 3px 3px 1px #FCF6ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF6ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF6ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF6ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF6ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF6ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF6ED; -webkit-box-shadow: 1px 1px 3px 2px #FCF6ED; box-shadow: 1px 1px 3px 2px #FCF6ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF6ED; -webkit-box-shadow: 1px 1px 3px 2px #FCF6ED; box-shadow:1px 1px 3px 2px #FCF6ED;">
Div content here</div>
This text has color #FCF6ED on black background.
This text has color #FCF6ED on white background.
This text has black color on #FCF6ED background.
This text has white color on #FCF6ED background.