color details

Color Details
#ffdb70 Color Hex

#ffdb70 color RGB value is (15, 253, 183).
#ffdb70 hex color red value is 15, green value is 253, and blue value is 183.
Cylindrical-coordinate representations (HSL) of color #ffdb70 hue: 162.35, saturation: 0.98 and lightness: 0.53.

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

Color Spaces
Color spaces of #ffdb70Value
RGB255, 219, 112
HSL0.12, 1, 0.72
HSV45°, 56°, 100°
XYZ69.5, 73.1, 25.77
Base Numbers
Base Red Green Blue
Binary 11111111 11011011 1110000
Octal 377 333 160
Decimal 255 219 112
Hex FF DB 70

RGB Percentages for Color #ffdb70

43.52%
37.37%
19.11%

CMYK Percentages of the Color #ffdb70

14.12%
56.08%
CSS Codes for Color #ffdb70
.mybgColor {background-color: #ffdb70;}
.myforeColor {color: #ffdb70;}
.myborderColor {border:3px solid #ffdb70;}
Text Font Color #ffdb70

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top