HEX: #FCEBCD
RGB: (252,235,205)
#FCEBCD contains red, green and blue colors in about the same proportion. Web safe color of #FCEBCD is #FFFFCC (or #FFC).
#FCEBCD color RGB value is (252,235,205).
RGB: (252,235,205) (99%,92%,80%)
R 252 of 255 = 99%
G 235 of 255 = 92%
B 205 of 255 = 80%
R + G + B ~ 90%. #FCEBCD is light color.
R + G + B =
252 + 235 + 205 = 692 (100%)
R 252 of 692 ~ 36.42%
G 235 of 692 ~ 33.96%
B 205 of 692 ~ 29.62%
#FCEBCD color CMYK value is (0,7,19,1).
CMYK: (0,7,19,1) C0M7Y19K1 (0%,7%,19%,1%) (0.00/0.07/0.19/0.01)
FC | EB | CD | |
---|---|---|---|
RGB | 252 | 235 | 205 |
HSL | 38° | 88.68% | 89.61% |
HSB/HSV | 38° | 18.65% | 98.82% |
CMYK | 0.00% | 6.75% | 18.65% |
1.18% |
HEX | FC | EB | CD |
Decimal | 252 | 235 | 205 |
Binary | 11111100 | 11101011 | 11001101 |
Octal | 374 | 353 | 315 |
Examples of css and html codes for elements with #FCEBCD color. Also use rgb(252,235,205) instead hex code.
.myTextColor { color: #FCEBCD; }
<p style="color:#FCEBCD">This sample text font color is #FCEBCD.</p>
This text font color is #FCEBCD.
.myBgColor { background-color: #FCEBCD; }
<div style="background-color:#FCEBCD">Inner text</div>
This div background color is #FCEBCD.
.myBorderColor { border: 1px solid #FCEBCD; }
<div style="border:3px solid #FCEBCD">Div</div>
This div border color is #FCEBCD.
.myOpacity80 { color: #FCEBCD; opacity: 0.8; }
<p style="color:#FCEBCD;opacity:0.8;">80%</p>
Text with #FCEBCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCEBCD;}
<p style="text-shadow: 3px 3px 1px #FCEBCD">Text here.</p>
This text has shadow with #FCEBCD color.
.textShadow {text-shadow: 3px 3px 1px #FCEBCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCEBCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCEBCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCEBCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCEBCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCEBCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCEBCD; -webkit-box-shadow: 1px 1px 3px 2px #FCEBCD; box-shadow: 1px 1px 3px 2px #FCEBCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCEBCD; -webkit-box-shadow: 1px 1px 3px 2px #FCEBCD; box-shadow:1px 1px 3px 2px #FCEBCD;">
Div content here</div>
This text has color #FCEBCD on black background.
This text has color #FCEBCD on white background.
This text has black color on #FCEBCD background.
This text has white color on #FCEBCD background.