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