FARBE #D9EBFB

HEX: #D9EBFB
RGB: (217,235,251)

Farbeninformationen

#D9EBFB enthält rote, grüne und blaue Farben ungefähr im gleichen Verhältnis. Für #D9EBFB ist eine «websichere» Webfarbe #CCFFFF (oder kurz #CFF).

Farbmodelle RGB

Die Farbe #D9EBFB wird in RGB als (217,235,251) definiert.

  • Rot hat einen Wert von 217;
  • Grün hat einen Wert von 235;
  • Blau hat einen Wert von 251.
RGB:
(217,235,251)
(85%,92%,98%)

Kanäle in RGB und Sättigung

R 217 von 255 = 85%
G 235 von 255 = 92%
B 251 von 255 = 98%

217
235
251

R + G + B ~ 92%. #D9EBFB helle Farbe.

Farbverhältnis in prozentualer Angabe

R + G + B =
217 + 235 + 251 = 703 (100%)
R 217 von 703 ~ 30.87%
G 235 von 703 ~ 33.43%
B 251 von 703 ~ 35.7%

%30.87
%33.43
%35.7

Farbmodell CMYK

Die Farbe #D9EBFB wird in CMYK als (14,6,0,2) definiert.

  • Cyan hat einen Wert von 13.55%
  • Magenta hat einen Wert von 6.37%
  • Gelb hat einen Wert von 0.00%
  • Schlüsselfarbe hat einen Wert von 1.57%
CMYK:
(14,6,0,2)
C14M6Y0K2 
(14%,6%,0%,2%)
(0.14/0.06/0.00/0.02)	

CMYK-Kanäle in Prozent

%13.55
%6.37
%0
%1.57

Farbcodes

Farbe #D9EBFB in den populären Farbmodellen.

D9EBFB
RGB217235251
HSL208°80.95%91.76%
HSB/HSV208°13.55%98.43%
CMYK13.55%6.37%0.00%
1.57%

Die Farbe #D9EBFB in den populären Zahlensystemen.

HexadezimalD9EBFB
Dezimal217235251
Binär110110011110101111111011
Oktal331353373

Farbtöne

Dunkle Töne der Farbe #D9EBFB

#D9EBFB
(217,235,251)
#C6D6E5
(198,214,229)
#B3C1CF
(179,193,207)
#A0ACB9
(160,172,185)
#8D97A3
(141,151,163)
#7A828D
(122,130,141)
#676D77
(103,109,119)
#545861
(84,88,97)
#41434B
(65,67,75)
#2E2E35
(46,46,53)
#1B191F
(27,25,31)
#000000
(0,0,0)

Helle Töne der Farbe #D9EBFB

#D9EBFB
(217,235,251)
#DCECFB
(220,236,251)
#DFEDFB
(223,237,251)
#E2EEFB
(226,238,251)
#E5EFFB
(229,239,251)
#E8F0FB
(232,240,251)
#EBF1FB
(235,241,251)
#EEF2FB
(238,242,251)
#F1F3FB
(241,243,251)
#F4F4FB
(244,244,251)
#F7F5FB
(247,245,251)
#FFFFFF
(255,255,255)

CSS3-Stile

Beispiele css- und html für Elemente in der Farbe #D9EBFB. Bitte benutzen Sie auch rgb(217,235,251) statt hex-Code.

Textfarbe

.myTextColor { color: #D9EBFB; }

<p style="color:#D9EBFB">This sample text font color is #D9EBFB.</p>

Die Farbe dieses Textes ist #D9EBFB.


Hintergrundfarbe

.myBgColor { background-color: #D9EBFB; }

<div style="background-color:#D9EBFB">Inner text</div>

Der Hintergrund von diesem div ist in Farbe #D9EBFB.


Grenzfarbe

.myBorderColor { border: 1px solid #D9EBFB; }

<div style="border:3px solid #D9EBFB">Div</div>

Die Grenzen von diesem div sind in Farbe #D9EBFB.


Transparenz

.myOpacity80 { color: #D9EBFB; opacity: 0.8; }

<p style="color:#D9EBFB;opacity:0.8;">80%</p>

Text in Farbe #D9EBFB und mit Transparenz 100% | 80% | 50% | 30%.

Hintergrund mit Transparenzgrad 100%.

Hintergrund mit Transparenzgrad 80%.

Hintergrund mit Transparenzgrad 50%.

Hintergrund mit Transparenzgrad 30%.

Farbe des Textschattens

.textShadow {text-shadow: 3px 3px 1px #D9EBFB;}

<p style="text-shadow: 3px 3px 1px #D9EBFB">Text here.</p>

Dieser Text hat den Schatten in Farbe #D9EBFB.

.textShadow {text-shadow: 3px 3px 1px #D9EBFB, 3px 3px 1px red;}

<p style="text-shadow: 3px 3px 1px #D9EBFB, 5px 5px 20px red">Text here.</p>

Dieser Text hat den Schatten in Grundfarbe #D9EBFB und zusätzlichem Rot.


Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9EBFB, Direction=45, Strength=4)}

<p style="filter: Shadow(Color=#D9EBFB, Direction=45, Strength=4)">Text</p>

This text has shadow with #D9EBFB and red colors in old Internet Explorer.


Farbe des Schattens vom div-Element

/* css code */
.divShadow
{
  -moz-box-shadow:	1px 1px 3px 2px #D9EBFB;
  -webkit-box-shadow:	1px 1px 3px 2px #D9EBFB;
  box-shadow:		1px 1px 3px 2px #D9EBFB;
}

/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #D9EBFB;
-webkit-box-shadow: 1px 1px 3px 2px #D9EBFB;
box-shadow:1px 1px 3px 2px #D9EBFB;">
Div content here</div>
Dieses div hat den Schatten in Farbe #D9EBFB.

Beispiele

Farbenbeispiel auf dem schwarzen Hintergrund

Dieser Text ist in der Farbe #D9EBFB auf dem schwarzen Hintergrund.


Farbenbeispiel auf dem weißen Hintergrund

Dieser Text ist in Farbe #D9EBFB auf dem weißen Hintergrund.



Beispiel eines schwarzen Textes auf dem Hintergrund in Farbe #D9EBFB

Dieser Text ist schwarz auf dem Hintergrund in Farbe #D9EBFB.


Beispiel eines weißen Textes auf dem Hintergrund in Farbe #D9EBFB

Dieser Text ist weiß auf dem Hintergrund in Farbe #D9EBFB.