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