#d48235 Color
Color Codes | |
---|---|
Hex Code | #d48235 |
RGB Code | rgb(212, 130, 53) |
HSL Code | hsl(29, 65%, 52%) |
#d48235 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 130, 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(29, 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 #d48235
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 130, 53, 10%) | #d482351a | |
rgb(212, 130, 53, 20%) | #d4823533 | |
rgb(212, 130, 53, 40%) | #d482354C | |
rgb(212, 130, 53, 60%) | #d4823599 | |
rgb(212, 130, 53, 80%) | #d48235CC | |
rgb(212, 130, 53, 100%) | #d48235FF |
Saturated and desaturated colors of #d48235
HSL Code | Preview |
---|---|
hsl(29, 10%, 52%) | |
hsl(29, 20%, 52%) | |
hsl(29, 40%, 52%) | |
hsl(29, 60%, 52%) | |
hsl(29, 80%, 52%) | |
hsl(29, 100%, 52%) |
#d48235 Color Usage In CSS
body { color: #d48235; } p { color: rgb(212, 130, 53); } header { border-bottom:1px solid #d48235; }