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