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