HEX: #FFFAF0
RGB: (255,250,240)
Color name is FloralWhite. #FFFAF0 contains red, green and blue colors in about the same proportion. Web safe color of #FFFAF0 is #FFFFFF (or #FFF).
#FFFAF0 color RGB value is (255,250,240).
RGB: (255,250,240) (100%,98%,94%)
R 255 of 255 = 100%
G 250 of 255 = 98%
B 240 of 255 = 94%
R + G + B ~ 97%. #FFFAF0 is light color.
R + G + B =
255 + 250 + 240 = 745 (100%)
R 255 of 745 ~ 34.23%
G 250 of 745 ~ 33.56%
B 240 of 745 ~ 32.21%
#FFFAF0 color CMYK value is (0,2,6,0).
CMYK: (0,2,6,0) C0M2Y6K0 (0%,2%,6%,0%) (0.00/0.02/0.06/0.00)
FF | FA | F0 | |
---|---|---|---|
RGB | 255 | 250 | 240 |
HSL | 40° | 100.00% | 97.06% |
HSB/HSV | 40° | 5.88% | 100.00% |
CMYK | 0.00% | 1.96% | 5.88% |
0.00% |
HEX | FF | FA | F0 |
Decimal | 255 | 250 | 240 |
Binary | 11111111 | 11111010 | 11110000 |
Octal | 377 | 372 | 360 |
Examples of css and html codes for elements with #FFFAF0 color. Also use rgb(255,250,240) instead hex code.
.myTextColor { color: #FFFAF0; }
<p style="color:#FFFAF0">This sample text font color is #FFFAF0.</p>
This text font color is #FFFAF0.
.myBgColor { background-color: #FFFAF0; }
<div style="background-color:#FFFAF0">Inner text</div>
This div background color is #FFFAF0.
.myBorderColor { border: 1px solid #FFFAF0; }
<div style="border:3px solid #FFFAF0">Div</div>
This div border color is #FFFAF0.
.myOpacity80 { color: #FFFAF0; opacity: 0.8; }
<p style="color:#FFFAF0;opacity:0.8;">80%</p>
Text with #FFFAF0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFAF0;}
<p style="text-shadow: 3px 3px 1px #FFFAF0">Text here.</p>
This text has shadow with #FFFAF0 color.
.textShadow {text-shadow: 3px 3px 1px #FFFAF0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFAF0, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFFAF0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFAF0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFAF0, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFAF0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFAF0; -webkit-box-shadow: 1px 1px 3px 2px #FFFAF0; box-shadow: 1px 1px 3px 2px #FFFAF0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFAF0; -webkit-box-shadow: 1px 1px 3px 2px #FFFAF0; box-shadow:1px 1px 3px 2px #FFFAF0;">
Div content here</div>
This text has color #FFFAF0 on black background.
This text has color #FFFAF0 on white background.
This text has black color on #FFFAF0 background.
This text has white color on #FFFAF0 background.