color details

Color Details
#f1f9fe Color Hex

#f1f9fe color RGB value is (15, 31, 159).
#f1f9fe hex color red value is 15, green value is 31, and blue value is 159.
Cylindrical-coordinate representations (HSL) of color #f1f9fe hue: 233.33, saturation: 0.83 and lightness: 0.34.

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

Color Spaces
Color spaces of #f1f9feValue
RGB241, 249, 254
HSL0.56, 0.87, 0.97
HSV203°, 5°, 100°
XYZ88.04, 93.61, 107.18
Base Numbers
Base Red Green Blue
Binary 11110001 11111001 11111110
Octal 361 371 376
Decimal 241 249 254
Hex F1 F9 FE

RGB Percentages for Color #f1f9fe

32.39%
33.47%
34.14%

CMYK Percentages of the Color #f1f9fe

5.12%
1.97%
0.39%
CSS Codes for Color #f1f9fe
.mybgColor {background-color: #f1f9fe;}
.myforeColor {color: #f1f9fe;}
.myborderColor {border:3px solid #f1f9fe;}
Text Font Color #f1f9fe

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

This sample text is styled with the font color #f1f9fe. 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 #f1f9fe

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

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

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

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

<p style="text-shadow: 4px 4px 2px rgba(241, 249, 254, 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 #f1f9fe;">Text here</p>

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

Shadow Div Box

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

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

Scroll to Top