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