color details

Color Details
#fffcf3 Color Hex

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

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

Color Spaces
Color spaces of #fffcf3Value
RGB255, 252, 243
HSL0.13, 1, 0.98
HSV45°, 5°, 100°
XYZ92.23, 97.35, 98.71
Base Numbers
Base Red Green Blue
Binary 11111111 11111100 11110011
Octal 377 374 363
Decimal 255 252 243
Hex FF FC F3

RGB Percentages for Color #fffcf3

34%
33.6%
32.4%

CMYK Percentages of the Color #fffcf3

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top