HEX: #FDF6FA
RGB: (253,246,250)
#FDF6FA contains red, green and blue colors in about the same proportion. Web safe color of #FDF6FA is #FFFFFF (or #FFF).
#FDF6FA color RGB value is (253,246,250).
RGB: (253,246,250) (99%,96%,98%)
R 253 of 255 = 99%
G 246 of 255 = 96%
B 250 of 255 = 98%
R + G + B ~ 98%. #FDF6FA is light color.
R + G + B =
253 + 246 + 250 = 749 (100%)
R 253 of 749 ~ 33.78%
G 246 of 749 ~ 32.84%
B 250 of 749 ~ 33.38%
#FDF6FA color CMYK value is (0,3,1,1).
CMYK: (0,3,1,1) C0M3Y1K1 (0%,3%,1%,1%) (0.00/0.03/0.01/0.01)
FD | F6 | FA | |
---|---|---|---|
RGB | 253 | 246 | 250 |
HSL | 326° | 63.64% | 97.84% |
HSB/HSV | 326° | 2.77% | 99.22% |
CMYK | 0.00% | 2.77% | 1.19% |
0.78% |
HEX | FD | F6 | FA |
Decimal | 253 | 246 | 250 |
Binary | 11111101 | 11110110 | 11111010 |
Octal | 375 | 366 | 372 |
Examples of css and html codes for elements with #FDF6FA color. Also use rgb(253,246,250) instead hex code.
.myTextColor { color: #FDF6FA; }
<p style="color:#FDF6FA">This sample text font color is #FDF6FA.</p>
This text font color is #FDF6FA.
.myBgColor { background-color: #FDF6FA; }
<div style="background-color:#FDF6FA">Inner text</div>
This div background color is #FDF6FA.
.myBorderColor { border: 1px solid #FDF6FA; }
<div style="border:3px solid #FDF6FA">Div</div>
This div border color is #FDF6FA.
.myOpacity80 { color: #FDF6FA; opacity: 0.8; }
<p style="color:#FDF6FA;opacity:0.8;">80%</p>
Text with #FDF6FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDF6FA;}
<p style="text-shadow: 3px 3px 1px #FDF6FA">Text here.</p>
This text has shadow with #FDF6FA color.
.textShadow {text-shadow: 3px 3px 1px #FDF6FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDF6FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDF6FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDF6FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDF6FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDF6FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDF6FA; -webkit-box-shadow: 1px 1px 3px 2px #FDF6FA; box-shadow: 1px 1px 3px 2px #FDF6FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDF6FA; -webkit-box-shadow: 1px 1px 3px 2px #FDF6FA; box-shadow:1px 1px 3px 2px #FDF6FA;">
Div content here</div>
This text has color #FDF6FA on black background.
This text has color #FDF6FA on white background.
This text has black color on #FDF6FA background.
This text has white color on #FDF6FA background.