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