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