Hex #1874cd Color

#1874cd
equivalent to

RGB

(24, 116, 205)

Details of #1874cd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
24
17.6415
0.58
0.88
48.3767
17.0928
210°
41.3434
116
17.0928
0.79
0.43
7.7272
0.1860
88°
3.8165
205
60.1270
0.45
0.00   0.20
-53.0898
0.1802
80°
-57.2558

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11000
30
24
18
Green
1110100
164
116
74
Blue
11001101
315
205
CD

RGB in % of #1874cd

%6.96
%33.62
%59.42

CMYK in % of #1874cd

%88
%43
%0
%20

Triads of color #1874cd

#1874cd #74cd18 #cd18cd

Similar Colors to #1874cd

#1874cd #18cdcc #181acd

Preview Color #1874cd on black ground

#1874cd is very interesting for text.

Preview Color #1874cd on white ground

#1874cd is very interesting for text.

CSS Codes #1874cd color

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

Text Font Color #1874cd

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

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

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

This div background color is #1874cd


Border Color #1874cd

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

The color of this border is #1874cd


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #1874cd