Hex #fcfcfc Color

#fcfcfc
equivalent to

RGB

(252, 252, 252)

Details of #fcfcfc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
252
92.5260
0.00
0.00
98.9640
97.3445
98.6633
252
97.3445
0.00
0.00
0.0052
0.3127
-5.2639
252
106.0082
0.99
0.00   0.01
-0.0103
0.3290
99°
5.3824

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111100
374
252
FC
Green
11111100
374
252
FC
Blue
11111100
374
252
FC

RGB in % of #fcfcfc

%33.33
%33.33
%33.33

CMYK in % of #fcfcfc

%0
%0
%0
%1

Triads of color #fcfcfc

#fcfcfc #fcfcfc #fcfcfc

Similar Colors to #fcfcfc

#fcfcfc #fcfcfc #fcfcfc

Preview Color #fcfcfc on black ground

#fcfcfc is very interesting for text.

Preview Color #fcfcfc on white ground

#fcfcfc is very interesting for text.

CSS Codes #fcfcfc color

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

Text Font Color #fcfcfc

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

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

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

This div background color is #fcfcfc


Border Color #fcfcfc

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

The color of this border is #fcfcfc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #fcfcfc