color details

Color Details
#FFA500 Color Hex

#FFA500 color RGB value is (15, 250, 80).
#FFA500 hex color red value is 15, green value is 250, and blue value is 80.
Cylindrical-coordinate representations (HSL) of color #FFA500 hue: 136.6, saturation: 0.96 and lightness: 0.52.

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

Color Spaces
Color spaces of #FFA500Value
RGB255, 165, 0
HSL0.11, 1, 0.5
HSV39°, 100°, 100°
XYZ54.7, 48.18, 6.42
Base Numbers
Base Red Green Blue
Binary 11111111 10100101 0
Octal 377 245 0
Decimal 255 165 0
Hex FF A5 0

RGB Percentages for Color #FFA500

60.71%
39.29%

CMYK Percentages of the Color #FFA500

35.29%
100%
CSS Codes for Color #FFA500
.mybgColor {background-color: #FFA500;}
.myforeColor {color: #FFA500;}
.myborderColor {border:3px solid #FFA500;}
Text Font Color #FFA500

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

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

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

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

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

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

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

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

Shadow Div Box

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

This div box has a shadow with a specified color. #FFA500
Scroll to Top