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