Hex #1e90ff Color

#1e90ff
equivalent to

RGB

(30, 144, 255)

Details of #1e90ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
30
28.5587
0.58
0.88
59.3817
27.4425
210°
52.3856
144
27.4425
1.00
0.44
9.9696
0.1850
88°
5.6369
255
98.3995
0.56
0.00   0.00
-63.3949
0.1777
100°
-74.6582

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11110
36
30
1E
Green
10010000
220
144
90
Blue
11111111
377
255
FF

RGB in % of #1e90ff

%6.99
%33.57
%59.44

CMYK in % of #1e90ff

%88
%44
%0
%0

Triads of color #1e90ff

#1e90ff #90ff1e #ff1eff

Similar Colors to #1e90ff

#1e90ff #1efffe #1e20ff

Preview Color #1e90ff on black ground

#1e90ff is very interesting for text.

Preview Color #1e90ff on white ground

#1e90ff is very interesting for text.

CSS Codes #1e90ff color

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

Text Font Color #1e90ff

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

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

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

This div background color is #1e90ff


Border Color #1e90ff

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

The color of this border is #1e90ff


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #1e90ff