color details

Color Details
#F0FCFF Color Hex

#F0FCFF color RGB value is (15, 15, 207).
#F0FCFF hex color red value is 15, green value is 15, and blue value is 207.
Cylindrical-coordinate representations (HSL) of color #F0FCFF hue: 240, saturation: 0.86 and lightness: 0.44.

The process color (four-color CMYK) of #F0FCFF color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #F0FCFF is #ff9999. Color #F0FCFF contains mainly RED.

Color Spaces
Color spaces of #F0FCFFValue
RGB240, 252, 255
HSL0.53, 1, 0.97
HSV192°, 6°, 100°
XYZ88.79, 95.37, 108.32
Base Numbers
Base Red Green Blue
Binary 11110000 11111100 11111111
Octal 360 374 377
Decimal 240 252 255
Hex F0 FC FF

RGB Percentages for Color #F0FCFF

32.13%
33.73%
34.14%

CMYK Percentages of the Color #F0FCFF

5.88%
1.18%
CSS Codes for Color #F0FCFF
.mybgColor {background-color: #F0FCFF;}
.myforeColor {color: #F0FCFF;}
.myborderColor {border:3px solid #F0FCFF;}
Text Font Color #F0FCFF

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

This sample text is styled with the font color #F0FCFF. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #F0FCFF

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

The background color of this div is #F0FCFF
Border Color #F0FCFF

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

The border color of this div is #F0FCFF
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(240, 252, 255, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #F0FCFF;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #F0FCFF;
-webkit-box-shadow: 1px 1px 3px #F0FCFF;
box-shadow: 1px 1px 3px #F0FCFF;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(240, 252, 255, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #F0FCFF;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

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

This div box has a shadow with a specified color. #F0FCFF

Scroll to Top