color details

Color Details
#ffcf80 Color Hex

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

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

Color Spaces
Color spaces of #ffcf80Value
RGB255, 207, 128
HSL0.1, 1, 0.75
HSV37°, 50°, 100°
XYZ67.45, 67.45, 29.88
Base Numbers
Base Red Green Blue
Binary 11111111 11001111 10000000
Octal 377 317 200
Decimal 255 207 128
Hex FF CF 80

RGB Percentages for Color #ffcf80

43.22%
35.08%
21.69%

CMYK Percentages of the Color #ffcf80

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top