color details

Color Details
#fffefb Color Hex

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

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

Color Spaces
Color spaces of #fffefbValue
RGB255, 254, 251
HSL0.13, 1, 0.99
HSV45°, 2°, 100°
XYZ94.09, 99.11, 105.42
Base Numbers
Base Red Green Blue
Binary 11111111 11111110 11111011
Octal 377 376 373
Decimal 255 254 251
Hex FF FE FB

RGB Percentages for Color #fffefb

33.55%
33.42%
33.03%

CMYK Percentages of the Color #fffefb

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top