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