Hex #6495ed Color

#6495ed
equivalent to

RGB

(100, 149, 237)

Details of #6495ed

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
100
31.2890
0.61
0.58
61.9282
30.3186
219°
55.0624
149
30.3186
0.79
0.37
9.3428
0.2144
58°
5.0732
237
84.3237
0.66
0.00   0.07
-49.3061
0.2078
93°
-52.2217

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1100100
144
100
64
Green
10010101
225
149
95
Blue
11101101
355
237
ED

RGB in % of #6495ed

%20.58
%30.66
%48.77

CMYK in % of #6495ed

%58
%37
%0
%7

Triads of color #6495ed

#6495ed #95ed64 #ed64ed

Similar Colors to #6495ed

#6495ed #64daed #7864ed

Preview Color #6495ed on black ground

#6495ed is very interesting for text.

Preview Color #6495ed on white ground

#6495ed is very interesting for text.

CSS Codes #6495ed color

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

Text Font Color #6495ed

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

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

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

This div background color is #6495ed


Border Color #6495ed

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

The color of this border is #6495ed


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #6495ed