Hex #f1f6fc Color

#f1f6fc
equivalent to

RGB

(241, 246, 252)

Details of #f1f6fc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
241
86.8021
0.59
0.04
96.6732
91.6406
213°
95.7291
246
91.6406
0.65
0.02
-0.5574
0.3060
-5.6710
252
105.2089
0.97
0.00   0.01
-3.4605
0.3231
99°
1.8715

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11110001
361
241
F1
Green
11110110
366
246
F6
Blue
11111100
374
252
FC

RGB in % of #f1f6fc

%32.61
%33.29
%34.10

CMYK in % of #f1f6fc

%4
%2
%0
%1

Triads of color #f1f6fc

#f1f6fc #f6fcf1 #fcf1fc

Similar Colors to #f1f6fc

#f1f6fc #f1fcfc #f2f1fc

Preview Color #f1f6fc on black ground

#f1f6fc is very interesting for text.

Preview Color #f1f6fc on white ground

#f1f6fc is very interesting for text.

CSS Codes #f1f6fc color

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

Text Font Color #f1f6fc

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

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

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

This div background color is #f1f6fc


Border Color #f1f6fc

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

The color of this border is #f1f6fc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #f1f6fc