Hex #3f51cc Color

#3f51cc
equivalent to

RGB

(63, 81, 204)

Details of #3f51cc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
63
15.8914
0.65
0.69
40.0833
11.3013
232°
33.6173
81
11.3013
0.58
0.60
33.7129
0.1855
69°
25.5493
204
58.4705
0.52
0.00   0.20
-65.8679
0.1319
80°
-79.5532

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
111111
77
63
3F
Green
1010001
121
81
51
Blue
11001100
314
204
CC

RGB in % of #3f51cc

%18.10
%23.28
%58.62

CMYK in % of #3f51cc

%69
%60
%0
%20

Triads of color #3f51cc

#3f51cc #51cc3f #cc3fcc

Similar Colors to #3f51cc

#3f51cc #3f98cc #743fcc

Preview Color #3f51cc on black ground

#3f51cc is very interesting for text.

Preview Color #3f51cc on white ground

#3f51cc is very interesting for text.

CSS Codes #3f51cc color

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

Text Font Color #3f51cc

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

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

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

This div background color is #3f51cc


Border Color #3f51cc

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

The color of this border is #3f51cc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #3f51cc