HEX: #FDFBEA
RGB: (253,251,234)
#FDFBEA contains red, green and blue colors in about the same proportion. Web safe color of #FDFBEA is #FFFFFF (or #FFF).
#FDFBEA color RGB value is (253,251,234).
RGB: (253,251,234) (99%,98%,92%)
R 253 of 255 = 99%
G 251 of 255 = 98%
B 234 of 255 = 92%
R + G + B ~ 96%. #FDFBEA is light color.
R + G + B =
253 + 251 + 234 = 738 (100%)
R 253 of 738 ~ 34.28%
G 251 of 738 ~ 34.01%
B 234 of 738 ~ 31.71%
#FDFBEA color CMYK value is (0,1,8,1).
CMYK: (0,1,8,1) C0M1Y8K1 (0%,1%,8%,1%) (0.00/0.01/0.08/0.01)
FD | FB | EA | |
---|---|---|---|
RGB | 253 | 251 | 234 |
HSL | 54° | 82.61% | 95.49% |
HSB/HSV | 54° | 7.51% | 99.22% |
CMYK | 0.00% | 0.79% | 7.51% |
0.78% |
HEX | FD | FB | EA |
Decimal | 253 | 251 | 234 |
Binary | 11111101 | 11111011 | 11101010 |
Octal | 375 | 373 | 352 |
Examples of css and html codes for elements with #FDFBEA color. Also use rgb(253,251,234) instead hex code.
.myTextColor { color: #FDFBEA; }
<p style="color:#FDFBEA">This sample text font color is #FDFBEA.</p>
This text font color is #FDFBEA.
.myBgColor { background-color: #FDFBEA; }
<div style="background-color:#FDFBEA">Inner text</div>
This div background color is #FDFBEA.
.myBorderColor { border: 1px solid #FDFBEA; }
<div style="border:3px solid #FDFBEA">Div</div>
This div border color is #FDFBEA.
.myOpacity80 { color: #FDFBEA; opacity: 0.8; }
<p style="color:#FDFBEA;opacity:0.8;">80%</p>
Text with #FDFBEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDFBEA;}
<p style="text-shadow: 3px 3px 1px #FDFBEA">Text here.</p>
This text has shadow with #FDFBEA color.
.textShadow {text-shadow: 3px 3px 1px #FDFBEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDFBEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDFBEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDFBEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDFBEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDFBEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDFBEA; -webkit-box-shadow: 1px 1px 3px 2px #FDFBEA; box-shadow: 1px 1px 3px 2px #FDFBEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDFBEA; -webkit-box-shadow: 1px 1px 3px 2px #FDFBEA; box-shadow:1px 1px 3px 2px #FDFBEA;">
Div content here</div>
This text has color #FDFBEA on black background.
This text has color #FDFBEA on white background.
This text has black color on #FDFBEA background.
This text has white color on #FDFBEA background.