Hex #c1cdcd Color

#c1cdcd
equivalent to

RGB

(193, 205, 205)

Details of #c1cdcd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
193
54.8431
0.50
0.06
81.5153
59.4079
180°
77.0765
205
59.4079
0.11
0.00
-4.0647
0.3037
-7.8734
205
66.3339
0.78
0.00   0.20
-1.4166
0.3290
80°
2.9447

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11000001
301
193
C1
Green
11001101
315
205
CD
Blue
11001101
315
205
CD

RGB in % of #c1cdcd

%32.01
%34.00
%34.00

CMYK in % of #c1cdcd

%6
%0
%0
%20

Triads of color #c1cdcd

#c1cdcd #cdcdc1 #cdc1cd

Similar Colors to #c1cdcd

#c1cdcd #c1cdc7 #c1c7cd

Preview Color #c1cdcd on black ground

#c1cdcd is very interesting for text.

Preview Color #c1cdcd on white ground

#c1cdcd is very interesting for text.

CSS Codes #c1cdcd color

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

Text Font Color #c1cdcd

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

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

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

This div background color is #c1cdcd


Border Color #c1cdcd

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

The color of this border is #c1cdcd


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #c1cdcd