HEX: #BFFF00
RGB: (191,255,0)
#BFFF00 enthält hauptsächlich grüne Farbe. Für #BFFF00 ist eine «websichere» Webfarbe #CCFF00 (oder kurz #CF0).
Die Farbe #BFFF00 wird in RGB als (191,255,0) definiert.
RGB: (191,255,0) (75%,100%,0%)
R 191 von 255 = 75%
G 255 von 255 = 100%
B 0 von 255 = 0%
R + G + B ~ 58%. #BFFF00 mittlere Farbe (nicht dunkel und nicht hell).
R + G + B =
191 + 255 + 0 = 446 (100%)
R 191 von 446 ~ 42.83%
G 255 von 446 ~ 57.17%
B 0 von 446 ~ 0%
Die Farbe #BFFF00 wird in CMYK als (25,0,100,0) definiert.
CMYK: (25,0,100,0) C25M0Y100K0 (25%,0%,100%,0%) (0.25/0.00/1.00/0.00)
BF | FF | 00 | |
---|---|---|---|
RGB | 191 | 255 | 0 |
HSL | 75° | 100.00% | 50.00% |
HSB/HSV | 75° | 100.00% | 100.00% |
CMYK | 25.10% | 0.00% | 100.00% |
0.00% |
Hexadezimal | BF | FF | 00 |
Dezimal | 191 | 255 | 0 |
Binär | 10111111 | 11111111 | 0 |
Oktal | 277 | 377 | 0 |
Beispiele css- und html für Elemente in der Farbe #BFFF00. Bitte benutzen Sie auch rgb(191,255,0) statt hex-Code.
.myTextColor { color: #BFFF00; }
<p style="color:#BFFF00">This sample text font color is #BFFF00.</p>
Die Farbe dieses Textes ist #BFFF00.
.myBgColor { background-color: #BFFF00; }
<div style="background-color:#BFFF00">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #BFFF00.
.myBorderColor { border: 1px solid #BFFF00; }
<div style="border:3px solid #BFFF00">Div</div>
Die Grenzen von diesem div sind in Farbe #BFFF00.
.myOpacity80 { color: #BFFF00; opacity: 0.8; }
<p style="color:#BFFF00;opacity:0.8;">80%</p>
Text in Farbe #BFFF00 und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BFFF00;}
<p style="text-shadow: 3px 3px 1px #BFFF00">Text here.</p>
Dieser Text hat den Schatten in Farbe #BFFF00.
.textShadow {text-shadow: 3px 3px 1px #BFFF00, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BFFF00, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #BFFF00 und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BFFF00, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BFFF00, Direction=45, Strength=4)">Text</p>
This text has shadow with #BFFF00 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BFFF00; -webkit-box-shadow: 1px 1px 3px 2px #BFFF00; box-shadow: 1px 1px 3px 2px #BFFF00; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BFFF00; -webkit-box-shadow: 1px 1px 3px 2px #BFFF00; box-shadow:1px 1px 3px 2px #BFFF00;">
Div content here</div>
Dieser Text ist in der Farbe #BFFF00 auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #BFFF00 auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #BFFF00.
Dieser Text ist weiß auf dem Hintergrund in Farbe #BFFF00.