HEX: #333333
RGB: (51,51,51)
#333333 enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Die Farbe #333333 ist «eine websichere» Webfarbe. Sie kann kurz als #333 geschrieben werden.
Die Farbe #333333 wird in RGB als (51,51,51) definiert.
RGB: (51,51,51) (20%,20%,20%)
R 51 von 255 = 20%
G 51 von 255 = 20%
B 51 von 255 = 20%
R + G + B ~ 20%. #333333 dunkle Farbe.
R + G + B =
51 + 51 + 51 = 153 (100%)
R 51 von 153 ~ 33.33%
G 51 von 153 ~ 33.33%
B 51 von 153 ~ 33.33%
Die Farbe #333333 wird in CMYK als (0,0,0,80) definiert.
CMYK: (0,0,0,80) C0M0Y0K80 (0%,0%,0%,80%) (0.00/0.00/0.00/0.80)
33 | 33 | 33 | |
---|---|---|---|
RGB | 51 | 51 | 51 |
HSL | 0° | 0.00% | 0.20% |
HSB/HSV | 0° | 0.00% | 0.20% |
CMYK | 0.00% | 0.00% | 0.00% |
80.00% |
Hexadezimal | 33 | 33 | 33 |
Dezimal | 51 | 51 | 51 |
Binär | 110011 | 110011 | 110011 |
Oktal | 63 | 63 | 63 |
Beispiele css- und html für Elemente in der Farbe #333333. Bitte benutzen Sie auch rgb(51,51,51) statt hex-Code.
.myTextColor { color: #333333; }
<p style="color:#333333">This sample text font color is #333333.</p>
Die Farbe dieses Textes ist #333333.
.myBgColor { background-color: #333333; }
<div style="background-color:#333333">Inner text</div>
Der Hintergrund von diesem div ist in Farbe #333333.
.myBorderColor { border: 1px solid #333333; }
<div style="border:3px solid #333333">Div</div>
Die Grenzen von diesem div sind in Farbe #333333.
.myOpacity80 { color: #333333; opacity: 0.8; }
<p style="color:#333333;opacity:0.8;">80%</p>
Text in Farbe #333333 und mit Transparenz 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #333333;}
<p style="text-shadow: 3px 3px 1px #333333">Text here.</p>
Dieser Text hat den Schatten in Farbe #333333.
.textShadow {text-shadow: 3px 3px 1px #333333, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #333333, 5px 5px 20px red">Text here.</p>
Dieser Text hat den Schatten in Grundfarbe #333333 und zusätzlichem Rot.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#333333, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#333333, Direction=45, Strength=4)">Text</p>
This text has shadow with #333333 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #333333; -webkit-box-shadow: 1px 1px 3px 2px #333333; box-shadow: 1px 1px 3px 2px #333333; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #333333; -webkit-box-shadow: 1px 1px 3px 2px #333333; box-shadow:1px 1px 3px 2px #333333;">
Div content here</div>
Dieser Text ist in der Farbe #333333 auf dem schwarzen Hintergrund.
Dieser Text ist in Farbe #333333 auf dem weißen Hintergrund.
Dieser Text ist schwarz auf dem Hintergrund in Farbe #333333.
Dieser Text ist weiß auf dem Hintergrund in Farbe #333333.