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