HEX: #FFFACD
RGB: (255,250,205)
Die Farbenname ist LemonChiffon. #FFFACD enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Für #FFFACD ist eine «websichere» Webfarbe #FFFFCC (oder kurz #FFC).
Die Farbe #FFFACD wird in RGB als (255,250,205) definiert.
RGB: (255,250,205) (100%,98%,80%)
R 255 von 255 = 100%
G 250 von 255 = 98%
B 205 von 255 = 80%
R + G + B ~ 93%. #FFFACD helle Farbe.
R + G + B =
255 + 250 + 205 = 710 (100%)
R 255 von 710 ~ 35.92%
G 250 von 710 ~ 35.21%
B 205 von 710 ~ 28.87%
Die Farbe #FFFACD wird in CMYK als (0,2,20,0) definiert.
CMYK: (0,2,20,0) C0M2Y20K0 (0%,2%,20%,0%) (0.00/0.02/0.20/0.00)
FF | FA | CD | |
---|---|---|---|
RGB | 255 | 250 | 205 |
HSL | 54° | 100.00% | 90.20% |
HSB/HSV | 54° | 19.61% | 100.00% |
CMYK | 0.00% | 1.96% | 19.61% |
0.00% |
Hexadezimal | FF | FA | CD |
Dezimal | 255 | 250 | 205 |
Binär | 11111111 | 11111010 | 11001101 |
Oktal | 377 | 372 | 315 |
Beispiele css- und html für Elemente in der Farbe #FFFACD. Bitte benutzen Sie auch rgb(255,250,205) statt hex-Code.
.myTextColor { color: #FFFACD; }
<p style="color:#FFFACD">This sample text font color is #FFFACD.</p>
Die Farbe dieses Textes ist #FFFACD.
.myBgColor { background-color: #FFFACD; }
<div style="background-color:#FFFACD">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #FFFACD.
.myBorderColor { border: 1px solid #FFFACD; }
<div style="border:3px solid #FFFACD">Div</div>
Die Grenzen von diesem div sind in Farbe #FFFACD.
.myOpacity80 { color: #FFFACD; opacity: 0.8; }
<p style="color:#FFFACD;opacity:0.8;">80%</p>
Text in Farbe #FFFACD und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFACD;}
<p style="text-shadow: 3px 3px 1px #FFFACD">Text here.</p>
Dieser Text hat den Schatten in Farbe #FFFACD.
.textShadow {text-shadow: 3px 3px 1px #FFFACD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFACD, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #FFFACD und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFACD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFACD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFACD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFACD; -webkit-box-shadow: 1px 1px 3px 2px #FFFACD; box-shadow: 1px 1px 3px 2px #FFFACD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFACD; -webkit-box-shadow: 1px 1px 3px 2px #FFFACD; box-shadow:1px 1px 3px 2px #FFFACD;">
Div content here</div>
Dieser Text ist in der Farbe #FFFACD auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #FFFACD auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #FFFACD.
Dieser Text ist weiß auf dem Hintergrund in Farbe #FFFACD.