HEX: #00CCCC
RGB: (0,204,204)
#00CCCC enthält nur grüne und blaue Farbe. Die Farbe #00CCCC ist «eine websichere» Webfarbe. Sie kann kurz als #0CC geschrieben werden.
Die Farbe #00CCCC wird in RGB als (0,204,204) definiert.
RGB: (0,204,204) (0%,80%,80%)
R 0 von 255 = 0%
G 204 von 255 = 80%
B 204 von 255 = 80%
R + G + B ~ 53%. #00CCCC mittlere Farbe (nicht dunkel und nicht hell).
R + G + B =
0 + 204 + 204 = 408 (100%)
R 0 von 408 ~ 0%
G 204 von 408 ~ 50%
B 204 von 408 ~ 50%
Die Farbe #00CCCC wird in CMYK als (100,0,0,20) definiert.
CMYK: (100,0,0,20) C100M0Y0K20 (100%,0%,0%,20%) (1.00/0.00/0.00/0.20)
00 | CC | CC | |
---|---|---|---|
RGB | 0 | 204 | 204 |
HSL | 180° | 100.00% | 40.00% |
HSB/HSV | 180° | 100.00% | 80.00% |
CMYK | 100.00% | 0.00% | 0.00% |
20.00% |
Hexadezimal | 00 | CC | CC |
Dezimal | 0 | 204 | 204 |
Binär | 0 | 11001100 | 11001100 |
Oktal | 0 | 314 | 314 |
Beispiele css- und html für Elemente in der Farbe #00CCCC. Bitte benutzen Sie auch rgb(0,204,204) statt hex-Code.
.myTextColor { color: #00CCCC; }
<p style="color:#00CCCC">This sample text font color is #00CCCC.</p>
Die Farbe dieses Textes ist #00CCCC.
.myBgColor { background-color: #00CCCC; }
<div style="background-color:#00CCCC">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #00CCCC.
.myBorderColor { border: 1px solid #00CCCC; }
<div style="border:3px solid #00CCCC">Div</div>
Die Grenzen von diesem div sind in Farbe #00CCCC.
.myOpacity80 { color: #00CCCC; opacity: 0.8; }
<p style="color:#00CCCC;opacity:0.8;">80%</p>
Text in Farbe #00CCCC und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00CCCC;}
<p style="text-shadow: 3px 3px 1px #00CCCC">Text here.</p>
Dieser Text hat den Schatten in Farbe #00CCCC.
.textShadow {text-shadow: 3px 3px 1px #00CCCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00CCCC, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #00CCCC und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00CCCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00CCCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #00CCCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00CCCC; -webkit-box-shadow: 1px 1px 3px 2px #00CCCC; box-shadow: 1px 1px 3px 2px #00CCCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00CCCC; -webkit-box-shadow: 1px 1px 3px 2px #00CCCC; box-shadow:1px 1px 3px 2px #00CCCC;">
Div content here</div>
Dieser Text ist in der Farbe #00CCCC auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #00CCCC auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #00CCCC.
Dieser Text ist weiß auf dem Hintergrund in Farbe #00CCCC.