#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>
