HEX: #FFF8DC
RGB: (255,248,220)
Die Farbenname ist Cornsilk. #FFF8DC enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Für #FFF8DC ist eine «websichere» Webfarbe #FFFFCC (oder kurz #FFC).
Die Farbe #FFF8DC wird in RGB als (255,248,220) definiert.
RGB: (255,248,220) (100%,97%,86%)
R 255 von 255 = 100%
G 248 von 255 = 97%
B 220 von 255 = 86%
R + G + B ~ 94%. #FFF8DC helle Farbe.
R + G + B =
255 + 248 + 220 = 723 (100%)
R 255 von 723 ~ 35.27%
G 248 von 723 ~ 34.3%
B 220 von 723 ~ 30.43%
Die Farbe #FFF8DC wird in CMYK als (0,3,14,0) definiert.
CMYK: (0,3,14,0) C0M3Y14K0 (0%,3%,14%,0%) (0.00/0.03/0.14/0.00)
FF | F8 | DC | |
---|---|---|---|
RGB | 255 | 248 | 220 |
HSL | 48° | 100.00% | 93.14% |
HSB/HSV | 48° | 13.73% | 100.00% |
CMYK | 0.00% | 2.75% | 13.73% |
0.00% |
Hexadezimal | FF | F8 | DC |
Dezimal | 255 | 248 | 220 |
Binär | 11111111 | 11111000 | 11011100 |
Oktal | 377 | 370 | 334 |
Beispiele css- und html für Elemente in der Farbe #FFF8DC. Bitte benutzen Sie auch rgb(255,248,220) statt hex-Code.
.myTextColor { color: #FFF8DC; }
<p style="color:#FFF8DC">This sample text font color is #FFF8DC.</p>
Die Farbe dieses Textes ist #FFF8DC.
.myBgColor { background-color: #FFF8DC; }
<div style="background-color:#FFF8DC">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #FFF8DC.
.myBorderColor { border: 1px solid #FFF8DC; }
<div style="border:3px solid #FFF8DC">Div</div>
Die Grenzen von diesem div sind in Farbe #FFF8DC.
.myOpacity80 { color: #FFF8DC; opacity: 0.8; }
<p style="color:#FFF8DC;opacity:0.8;">80%</p>
Text in Farbe #FFF8DC und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFF8DC;}
<p style="text-shadow: 3px 3px 1px #FFF8DC">Text here.</p>
Dieser Text hat den Schatten in Farbe #FFF8DC.
.textShadow {text-shadow: 3px 3px 1px #FFF8DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFF8DC, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #FFF8DC und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFF8DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFF8DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFF8DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFF8DC; -webkit-box-shadow: 1px 1px 3px 2px #FFF8DC; box-shadow: 1px 1px 3px 2px #FFF8DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFF8DC; -webkit-box-shadow: 1px 1px 3px 2px #FFF8DC; box-shadow:1px 1px 3px 2px #FFF8DC;">
Div content here</div>
Dieser Text ist in der Farbe #FFF8DC auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #FFF8DC auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #FFF8DC.
Dieser Text ist weiß auf dem Hintergrund in Farbe #FFF8DC.