#a05338 Color
Color Codes | |
---|---|
Hex Code | #a05338 |
RGB Code | rgb(160, 83, 56) |
HSL Code | hsl(16, 48%, 42%) |
#a05338 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 83, 56); }
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(16, 48%, 42%); }
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 #a05338
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 83, 56, 10%) | #a053381a | |
rgb(160, 83, 56, 20%) | #a0533833 | |
rgb(160, 83, 56, 40%) | #a053384C | |
rgb(160, 83, 56, 60%) | #a0533899 | |
rgb(160, 83, 56, 80%) | #a05338CC | |
rgb(160, 83, 56, 100%) | #a05338FF |
Saturated and desaturated colors of #a05338
HSL Code | Preview |
---|---|
hsl(16, 10%, 42%) | |
hsl(16, 20%, 42%) | |
hsl(16, 40%, 42%) | |
hsl(16, 60%, 42%) | |
hsl(16, 80%, 42%) | |
hsl(16, 100%, 42%) |
#a05338 Color Usage In CSS
body { color: #a05338; } p { color: rgb(160, 83, 56); } header { border-bottom:1px solid #a05338; }