HEX: #FFEBCD
RGB: (255,235,205)
Die Farbenname ist BlanchedAlmond. #FFEBCD enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Für #FFEBCD ist eine «websichere» Webfarbe #FFFFCC (oder kurz #FFC).
Die Farbe #FFEBCD wird in RGB als (255,235,205) definiert.
RGB: (255,235,205) (100%,92%,80%)
R 255 von 255 = 100%
G 235 von 255 = 92%
B 205 von 255 = 80%
R + G + B ~ 91%. #FFEBCD helle Farbe.
R + G + B =
255 + 235 + 205 = 695 (100%)
R 255 von 695 ~ 36.69%
G 235 von 695 ~ 33.81%
B 205 von 695 ~ 29.5%
Die Farbe #FFEBCD wird in CMYK als (0,8,20,0) definiert.
CMYK: (0,8,20,0) C0M8Y20K0 (0%,8%,20%,0%) (0.00/0.08/0.20/0.00)
FF | EB | CD | |
---|---|---|---|
RGB | 255 | 235 | 205 |
HSL | 36° | 100.00% | 90.20% |
HSB/HSV | 36° | 19.61% | 100.00% |
CMYK | 0.00% | 7.84% | 19.61% |
0.00% |
Hexadezimal | FF | EB | CD |
Dezimal | 255 | 235 | 205 |
Binär | 11111111 | 11101011 | 11001101 |
Oktal | 377 | 353 | 315 |
Beispiele css- und html für Elemente in der Farbe #FFEBCD. Bitte benutzen Sie auch rgb(255,235,205) statt hex-Code.
.myTextColor { color: #FFEBCD; }
<p style="color:#FFEBCD">This sample text font color is #FFEBCD.</p>
Die Farbe dieses Textes ist #FFEBCD.
.myBgColor { background-color: #FFEBCD; }
<div style="background-color:#FFEBCD">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #FFEBCD.
.myBorderColor { border: 1px solid #FFEBCD; }
<div style="border:3px solid #FFEBCD">Div</div>
Die Grenzen von diesem div sind in Farbe #FFEBCD.
.myOpacity80 { color: #FFEBCD; opacity: 0.8; }
<p style="color:#FFEBCD;opacity:0.8;">80%</p>
Text in Farbe #FFEBCD und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEBCD;}
<p style="text-shadow: 3px 3px 1px #FFEBCD">Text here.</p>
Dieser Text hat den Schatten in Farbe #FFEBCD.
.textShadow {text-shadow: 3px 3px 1px #FFEBCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEBCD, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #FFEBCD und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEBCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEBCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEBCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEBCD; -webkit-box-shadow: 1px 1px 3px 2px #FFEBCD; box-shadow: 1px 1px 3px 2px #FFEBCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEBCD; -webkit-box-shadow: 1px 1px 3px 2px #FFEBCD; box-shadow:1px 1px 3px 2px #FFEBCD;">
Div content here</div>
Dieser Text ist in der Farbe #FFEBCD auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #FFEBCD auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #FFEBCD.
Dieser Text ist weiß auf dem Hintergrund in Farbe #FFEBCD.