#d49a35 Color
Color Codes | |
---|---|
Hex Code | #d49a35 |
RGB Code | rgb(212, 154, 53) |
HSL Code | hsl(38, 65%, 52%) |
#d49a35 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 154, 53); }
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(38, 65%, 52%); }
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 #d49a35
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 154, 53, 10%) | #d49a351a | |
rgb(212, 154, 53, 20%) | #d49a3533 | |
rgb(212, 154, 53, 40%) | #d49a354C | |
rgb(212, 154, 53, 60%) | #d49a3599 | |
rgb(212, 154, 53, 80%) | #d49a35CC | |
rgb(212, 154, 53, 100%) | #d49a35FF |
Saturated and desaturated colors of #d49a35
HSL Code | Preview |
---|---|
hsl(38, 10%, 52%) | |
hsl(38, 20%, 52%) | |
hsl(38, 40%, 52%) | |
hsl(38, 60%, 52%) | |
hsl(38, 80%, 52%) | |
hsl(38, 100%, 52%) |
#d49a35 Color Usage In CSS
body { color: #d49a35; } p { color: rgb(212, 154, 53); } header { border-bottom:1px solid #d49a35; }