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