color details

Color Details
#DAA520 Color Hex

#DAA520 color RGB value is (13, 170, 82).
#DAA520 hex color red value is 13, green value is 170, and blue value is 82.
Cylindrical-coordinate representations (HSL) of color #DAA520 hue: 146.37, saturation: 0.86 and lightness: 0.36.

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

Color Spaces
Color spaces of #DAA520Value
RGB218, 165, 32
HSL0.12, 0.74, 0.49
HSV43°, 85°, 85°
XYZ42.63, 41.92, 7.21
Base Numbers
Base Red Green Blue
Binary 11011010 10100101 100000
Octal 332 245 40
Decimal 218 165 32
Hex DA A5 20

RGB Percentages for Color #DAA520

52.53%
39.76%
7.71%

CMYK Percentages of the Color #DAA520

24.31%
85.32%
14.51%
CSS Codes for Color #DAA520
.mybgColor {background-color: #DAA520;}
.myforeColor {color: #DAA520;}
.myborderColor {border:3px solid #DAA520;}
Text Font Color #DAA520

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

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

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

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

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

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

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

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

Shadow Div Box

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

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