Hex #b4cdcd Color

#b4cdcd
equivalent to

RGB

(180, 205, 205)

Details of #b4cdcd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
180
51.6732
0.50
0.12
80.6128
57.7737
180°
76.0090
205
57.7737
0.20
0.00
-8.3544
0.2942
12°
-11.6659
205
66.1856
0.75
0.00   0.20
-2.8461
0.3289
80°
1.5968

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10110100
264
180
B4
Green
11001101
315
205
CD
Blue
11001101
315
205
CD

RGB in % of #b4cdcd

%30.51
%34.75
%34.75

CMYK in % of #b4cdcd

%12
%0
%0
%20

Triads of color #b4cdcd

#b4cdcd #cdcdb4 #cdb4cd

Similar Colors to #b4cdcd

#b4cdcd #b4cdc1 #b4c1cd

Preview Color #b4cdcd on black ground

#b4cdcd is very interesting for text.

Preview Color #b4cdcd on white ground

#b4cdcd is very interesting for text.

CSS Codes #b4cdcd color

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

Text Font Color #b4cdcd

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

This sample text font color is #b4cdcd
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 #b4cdcd

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

This div background color is #b4cdcd


Border Color #b4cdcd

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

The color of this border is #b4cdcd


Examples Css3

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

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 #b4cdcd">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #b4cdcd