color details

Color Details
#fecff2 Color Hex

#fecff2 color RGB value is (15, 236, 255).
#fecff2 hex color red value is 15, green value is 236, and blue value is 255.
Cylindrical-coordinate representations (HSL) of color #fecff2 hue: 184.75, saturation: 1 and lightness: 0.53.

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

Color Spaces
Color spaces of #fecff2Value
RGB254, 207, 242
HSL0.88, 0.96, 0.9
HSV315°, 19°, 100°
XYZ79.21, 72.11, 93.73
Base Numbers
Base Red Green Blue
Binary 11111110 11001111 11110010
Octal 376 317 362
Decimal 254 207 242
Hex FE CF F2

RGB Percentages for Color #fecff2

36.13%
29.45%
34.42%

CMYK Percentages of the Color #fecff2

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top