#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 of #DAA520 | Value |
---|---|
RGB | 218, 165, 32 |
HSL | 0.12, 0.74, 0.49 |
HSV | 43°, 85°, 85° |
XYZ | 42.63, 41.92, 7.21 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11011010 | 10100101 | 100000 |
Octal | 332 | 245 | 40 |
Decimal | 218 | 165 | 32 |
Hex | DA | A5 | 20 |
Shades of #DAA520
Tints of #DAA520
.mybgColor {background-color: #DAA520;} .myforeColor {color: #DAA520;} .myborderColor {border:3px solid #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,
<div style="background-color:#DAA520">Div content here</div>
<div style="border:3px solid #DAA520">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(218, 165, 32, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #DAA520;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>