Hex #3a5fcd Color

#3a5fcd
equivalent to

RGB

(58, 95, 205)

Details of #3a5fcd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
58
16.8566
0.62
0.72
43.4950
13.4917
225°
36.7311
95
13.4917
0.60
0.54
24.4744
0.1877
72°
17.6376
205
59.4733
0.52
0.00   0.20
-60.9097
0.1502
80°
-70.2530

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
111010
72
58
3A
Green
1011111
137
95
5F
Blue
11001101
315
205
CD

RGB in % of #3a5fcd

%16.20
%26.54
%57.26

CMYK in % of #3a5fcd

%72
%54
%0
%20

Triads of color #3a5fcd

#3a5fcd #5fcd3a #cd3acd

Similar Colors to #3a5fcd

#3a5fcd #3aa9cd #5e3acd

Preview Color #3a5fcd on black ground

#3a5fcd is very interesting for text.

Preview Color #3a5fcd on white ground

#3a5fcd is very interesting for text.

CSS Codes #3a5fcd color

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

Text Font Color #3a5fcd

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

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

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

This div background color is #3a5fcd


Border Color #3a5fcd

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

The color of this border is #3a5fcd


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #3a5fcd