color details

Color Details
#ff9e5d Color Hex

#ff9e5d color RGB value is (15, 249, 229).
#ff9e5d hex color red value is 15, green value is 249, and blue value is 229.
Cylindrical-coordinate representations (HSL) of color #ff9e5d hue: 174.87, saturation: 0.95 and lightness: 0.52.

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

Color Spaces
Color spaces of #ff9e5dValue
RGB255, 158, 93
HSL0.07, 1, 0.68
HSV24°, 64°, 100°
XYZ55.45, 46.51, 16.41
Base Numbers
Base Red Green Blue
Binary 11111111 10011110 1011101
Octal 377 236 135
Decimal 255 158 93
Hex FF 9E 5D

RGB Percentages for Color #ff9e5d

50.4%
31.23%
18.38%

CMYK Percentages of the Color #ff9e5d

38.04%
63.53%
CSS Codes for Color #ff9e5d
.mybgColor {background-color: #ff9e5d;}
.myforeColor {color: #ff9e5d;}
.myborderColor {border:3px solid #ff9e5d;}
Text Font Color #ff9e5d

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top