#daa520 hex color information.
RGB value of #daa520 is (218,165,32)
Change page background color to #daa520
| Reset
| RGB | 218 | 165 | 32 |
|---|---|---|---|
| HSL | 0.12 | 0.74 | 0.49 |
| HSV | 43° | 85° | 85° |
| CMYK | 0.00 | 0.24 | 0.85 0.15 |
| XYZ | 42.6293 | 41.9200 | 7.2111 |
| Yxy | 41.9200 | 0.4646 | 0.4568 |
| Hunter Lab | 64.7457 | 4.2216 | 38.7185 |
| CIE-Lab | 70.8157 | 8.5249 | 68.7645 |
#daa520 hex color red value is 218, green value is 165 and the blue value of its RGB is 165. Cylindrical-coordinate representations (also known as HSL) of color #daa520 hue: 0.12 , saturation: 0.74 and the lightness value of daa520 is 0.49.
The process color (four color CMYK) of #daa520 hex color is 0.00, 0.24, 0.85, 0.15. Web safe color of #daa520 is #cc9933
Color #daa520 contains mostly RED color. #daa520 color name is Goldenrod.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11011010 | 10100101 | 00100000 |
| Octal | 332 | 245 | 40 |
| Decimal | 218 | 165 | 32 |
| Hexadecimal | DA | A5 | 20 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#daa520; }
.myforecolor {color:#daa520; }
.mybordercolor {border:3px solid #daa520; }
This sample text font color is #daa520
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#daa520">Text here</p>
This div background color is #daa520
<div style="background-color:#daa520">
Div content here</div>
This div border color is #daa520
<div style="border:3px solid #daa520">
Div here</div>
| #daa520 | border color |
.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 2px #daa520;
-webkit-box-shadow: 1px 1px 3px 2px #daa520;
box-shadow: 1px 1px 3px 2px #daa520;
}
<p style="text-shadow: 4px 4px 2px rgba(218,165,32, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #daa520">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #daa520
<div style="-moz-box-shadow: 1px 1px 3px 2px #daa520; -webkit-box-shadow: 1px 1px 3px 2px #daa520; box-shadow: 1px 1px 3px 2px #daa520;">
Div content here</div>