Hex #4876ff Color

#4876ff
equivalent to

RGB

(72, 118, 255)

Details of #4876ff

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
72
27.2009
0.62
0.72
53.5512
21.5546
225°
46.4269
118
21.5546
1.00
0.54
29.7076
0.1862
72°
23.3339
255
97.3345
0.64
0.00   0.00
-72.7475
0.1475
100°
-91.7581

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
1001000
110
72
48
Green
1110110
166
118
76
Blue
11111111
377
255
FF

RGB in % of #4876ff

%16.18
%26.52
%57.30

CMYK in % of #4876ff

%72
%54
%0
%0

Triads of color #4876ff

#4876ff #76ff48 #ff48ff

Similar Colors to #4876ff

#4876ff #48d2ff #7648ff

Preview Color #4876ff on black ground

#4876ff is very interesting for text.

Preview Color #4876ff on white ground

#4876ff is very interesting for text.

CSS Codes #4876ff color

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

Text Font Color #4876ff

<p style="color:#4876ff">Text here</p>

This sample text font color is #4876ff
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 #4876ff

<div style="background-color:#4876ff">
Div content here</div>

This div background color is #4876ff


Border Color #4876ff

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

The color of this border is #4876ff


Examples Css3

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

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 #4876ff">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #4876ff