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