#d5a360 Color
Color Codes | |
---|---|
Hex Code | #d5a360 |
RGB Code | rgb(213, 163, 96) |
HSL Code | hsl(34, 58%, 61%) |
#d5a360 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 163, 96); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(34, 58%, 61%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #d5a360
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 163, 96, 10%) | #d5a3601a | |
rgb(213, 163, 96, 20%) | #d5a36033 | |
rgb(213, 163, 96, 40%) | #d5a3604C | |
rgb(213, 163, 96, 60%) | #d5a36099 | |
rgb(213, 163, 96, 80%) | #d5a360CC | |
rgb(213, 163, 96, 100%) | #d5a360FF |
Saturated and desaturated colors of #d5a360
HSL Code | Preview |
---|---|
hsl(34, 10%, 61%) | |
hsl(34, 20%, 61%) | |
hsl(34, 40%, 61%) | |
hsl(34, 60%, 61%) | |
hsl(34, 80%, 61%) | |
hsl(34, 100%, 61%) |
#d5a360 Color Usage In CSS
body { color: #d5a360; } p { color: rgb(213, 163, 96); } header { border-bottom:1px solid #d5a360; }