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