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