color details

Color Details
#ffce80 Color Hex

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

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

Color Spaces
Color spaces of #ffce80Value
RGB255, 206, 128
HSL0.1, 1, 0.75
HSV37°, 50°, 100°
XYZ67.21, 66.96, 29.8
Base Numbers
Base Red Green Blue
Binary 11111111 11001110 10000000
Octal 377 316 200
Decimal 255 206 128
Hex FF CE 80

RGB Percentages for Color #ffce80

43.29%
34.97%
21.73%

CMYK Percentages of the Color #ffce80

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top