Hex #2179ad Color

#2179ad
equivalent to

RGB

(33, 121, 173)

Details of #2179ad

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
33
15.0074
0.56
0.81
48.2792
17.0152
202°
41.2495
121
17.0152
0.68
0.30
-6.8197
0.2027
81°
-7.2445
173
42.0285
0.40
0.00   0.32
-34.7950
0.2298
68°
-31.5134

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
100001
41
33
21
Green
1111001
171
121
79
Blue
10101101
255
173
AD

RGB in % of #2179ad

%10.09
%37.00
%52.91

CMYK in % of #2179ad

%81
%30
%0
%32

Triads of color #2179ad

#2179ad #79ad21 #ad21ad

Similar Colors to #2179ad

#2179ad #21ad9b #2133ad

Preview Color #2179ad on black ground

#2179ad is very interesting for text.

Preview Color #2179ad on white ground

#2179ad is very interesting for text.

CSS Codes #2179ad color

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

Text Font Color #2179ad

<p style="color:#2179ad">Text here</p>

This sample text font color is #2179ad
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 #2179ad

<div style="background-color:#2179ad">
Div content here</div>

This div background color is #2179ad


Border Color #2179ad

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

The color of this border is #2179ad


Examples Css3

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

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 #2179ad">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #2179ad