color details

Color Details
#ffcfc0 Color Hex

#ffcfc0 color RGB value is (15, 252, 252).
#ffcfc0 hex color red value is 15, green value is 252, and blue value is 252.
Cylindrical-coordinate representations (HSL) of color #ffcfc0 hue: 180, saturation: 0.98 and lightness: 0.52.

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

Color Spaces
Color spaces of #ffcfc0Value
RGB255, 207, 192
HSL0.04, 1, 0.88
HSV14°, 25°, 100°
XYZ73.07, 69.69, 59.46
Base Numbers
Base Red Green Blue
Binary 11111111 11001111 11000000
Octal 377 317 300
Decimal 255 207 192
Hex FF CF C0

RGB Percentages for Color #ffcfc0

38.99%
31.65%
29.36%

CMYK Percentages of the Color #ffcfc0

18.82%
24.71%
CSS Codes for Color #ffcfc0
.mybgColor {background-color: #ffcfc0;}
.myforeColor {color: #ffcfc0;}
.myborderColor {border:3px solid #ffcfc0;}
Text Font Color #ffcfc0

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top