Hex #bdd5da Color

#bdd5da
equivalent to

RGB

(189, 213, 218)

Details of #bdd5da

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
189
57.4354
0.53
0.13
83.6887
63.4693
190°
79.6676
213
63.4693
0.28
0.02
-6.9749
0.2924
13°
-10.7305
218
75.5533
0.80
0.00   0.15
-5.1860
0.3231
85°
-0.4413

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10111101
275
189
BD
Green
11010101
325
213
D5
Blue
11011010
332
218
DA

RGB in % of #bdd5da

%30.48
%34.35
%35.16

CMYK in % of #bdd5da

%13
%2
%0
%15

Triads of color #bdd5da

#bdd5da #d5dabd #dabdda

Similar Colors to #bdd5da

#bdd5da #bddad1 #bdc7da

Preview Color #bdd5da on black ground

#bdd5da is very interesting for text.

Preview Color #bdd5da on white ground

#bdd5da is very interesting for text.

CSS Codes #bdd5da color

.mybgcolor {background-color:#bdd5da; }
.myforecolor {color:#bdd5da; }
.mybordercolor {border:3px solid #bdd5da; }

Text Font Color #bdd5da

<p style="color:#bdd5da">Text here</p>

This sample text font color is #bdd5da
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #bdd5da

<div style="background-color:#bdd5da">
Div content here</div>

This div background color is #bdd5da


Border Color #bdd5da

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

The color of this border is #bdd5da


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #bdd5da; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #bdd5da;
-webkit-box-shadow: 1px 1px 3px 2px #bdd5da;
box-shadow:         1px 1px 3px 2px #bdd5da; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #bdd5da">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #bdd5da;
  -webkit-box-shadow: 1px 1px 3px 2px #bdd5da;
  box-shadow:         1px 1px 3px 2px #bdd5da;">
Div content here</div>

The shadow of div box using color #bdd5da