HEX: #FDFBEC
RGB: (253,251,236)
#FDFBEC contains red, green and blue colors in about the same proportion. Web safe color of #FDFBEC is #FFFFFF (or #FFF).
#FDFBEC color RGB value is (253,251,236).
RGB: (253,251,236) (99%,98%,93%)
R 253 of 255 = 99%
G 251 of 255 = 98%
B 236 of 255 = 93%
R + G + B ~ 97%. #FDFBEC is light color.
R + G + B =
253 + 251 + 236 = 740 (100%)
R 253 of 740 ~ 34.19%
G 251 of 740 ~ 33.92%
B 236 of 740 ~ 31.89%
#FDFBEC color CMYK value is (0,1,7,1).
CMYK: (0,1,7,1) C0M1Y7K1 (0%,1%,7%,1%) (0.00/0.01/0.07/0.01)
FD | FB | EC | |
---|---|---|---|
RGB | 253 | 251 | 236 |
HSL | 53° | 80.95% | 95.88% |
HSB/HSV | 53° | 6.72% | 99.22% |
CMYK | 0.00% | 0.79% | 6.72% |
0.78% |
HEX | FD | FB | EC |
Decimal | 253 | 251 | 236 |
Binary | 11111101 | 11111011 | 11101100 |
Octal | 375 | 373 | 354 |
Examples of css and html codes for elements with #FDFBEC color. Also use rgb(253,251,236) instead hex code.
.myTextColor { color: #FDFBEC; }
<p style="color:#FDFBEC">This sample text font color is #FDFBEC.</p>
This text font color is #FDFBEC.
.myBgColor { background-color: #FDFBEC; }
<div style="background-color:#FDFBEC">Inner text</div>
This div background color is #FDFBEC.
.myBorderColor { border: 1px solid #FDFBEC; }
<div style="border:3px solid #FDFBEC">Div</div>
This div border color is #FDFBEC.
.myOpacity80 { color: #FDFBEC; opacity: 0.8; }
<p style="color:#FDFBEC;opacity:0.8;">80%</p>
Text with #FDFBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDFBEC;}
<p style="text-shadow: 3px 3px 1px #FDFBEC">Text here.</p>
This text has shadow with #FDFBEC color.
.textShadow {text-shadow: 3px 3px 1px #FDFBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDFBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDFBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDFBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDFBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDFBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDFBEC; -webkit-box-shadow: 1px 1px 3px 2px #FDFBEC; box-shadow: 1px 1px 3px 2px #FDFBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDFBEC; -webkit-box-shadow: 1px 1px 3px 2px #FDFBEC; box-shadow:1px 1px 3px 2px #FDFBEC;">
Div content here</div>
This text has color #FDFBEC on black background.
This text has color #FDFBEC on white background.
This text has black color on #FDFBEC background.
This text has white color on #FDFBEC background.