HEX: #FFFAFA
RGB: (255,250,250)
Die Farbenname ist Snow. #FFFAFA enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Für #FFFAFA ist eine «websichere» Webfarbe #FFFFFF (oder kurz #FFF).
Die Farbe #FFFAFA wird in RGB als (255,250,250) definiert.
RGB: (255,250,250) (100%,98%,98%)
R 255 von 255 = 100%
G 250 von 255 = 98%
B 250 von 255 = 98%
R + G + B ~ 99%. #FFFAFA helle Farbe.
R + G + B =
255 + 250 + 250 = 755 (100%)
R 255 von 755 ~ 33.77%
G 250 von 755 ~ 33.11%
B 250 von 755 ~ 33.11%
Die Farbe #FFFAFA wird in CMYK als (0,2,2,0) definiert.
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% |
Hexadezimal | FF | FA | FA |
Dezimal | 255 | 250 | 250 |
Binär | 11111111 | 11111010 | 11111010 |
Oktal | 377 | 372 | 372 |
Beispiele css- und html für Elemente in der Farbe #FFFAFA. Bitte benutzen Sie auch rgb(255,250,250) statt hex-Code.
.myTextColor { color: #FFFAFA; }
<p style="color:#FFFAFA">This sample text font color is #FFFAFA.</p>
Die Farbe dieses Textes ist #FFFAFA.
.myBgColor { background-color: #FFFAFA; }
<div style="background-color:#FFFAFA">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #FFFAFA.
.myBorderColor { border: 1px solid #FFFAFA; }
<div style="border:3px solid #FFFAFA">Div</div>
Die Grenzen von diesem div sind in Farbe #FFFAFA.
.myOpacity80 { color: #FFFAFA; opacity: 0.8; }
<p style="color:#FFFAFA;opacity:0.8;">80%</p>
Text in Farbe #FFFAFA und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFAFA;}
<p style="text-shadow: 3px 3px 1px #FFFAFA">Text here.</p>
Dieser Text hat den Schatten in Farbe #FFFAFA.
.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>
Dieser Text hat den Schatten in Grundfarbe #FFFAFA und zusätzlichem Rot.
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>
Dieser Text ist in der Farbe #FFFAFA auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #FFFAFA auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #FFFAFA.
Dieser Text ist weiß auf dem Hintergrund in Farbe #FFFAFA.