color details

Color Details
#ffaf80 Color Hex

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

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

Color Spaces
Color spaces of #ffaf80Value
RGB255, 175, 128
HSL0.06, 1, 0.75
HSV22°, 50°, 100°
XYZ60.47, 53.48, 27.56
Base Numbers
Base Red Green Blue
Binary 11111111 10101111 10000000
Octal 377 257 200
Decimal 255 175 128
Hex FF AF 80

RGB Percentages for Color #ffaf80

45.7%
31.36%
22.94%

CMYK Percentages of the Color #ffaf80

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top