#29271b Color
Color Codes | |
---|---|
Hex Code | #29271b |
RGB Code | rgb(41, 39, 27) |
HSL Code | hsl(51, 21%, 13%) |
#29271b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(41, 39, 27); }
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(51, 21%, 13%); }
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 #29271b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(41, 39, 27, 10%) | #29271b1a | |
rgb(41, 39, 27, 20%) | #29271b33 | |
rgb(41, 39, 27, 40%) | #29271b4C | |
rgb(41, 39, 27, 60%) | #29271b99 | |
rgb(41, 39, 27, 80%) | #29271bCC | |
rgb(41, 39, 27, 100%) | #29271bFF |
Saturated and desaturated colors of #29271b
HSL Code | Preview |
---|---|
hsl(51, 10%, 13%) | |
hsl(51, 20%, 13%) | |
hsl(51, 40%, 13%) | |
hsl(51, 60%, 13%) | |
hsl(51, 80%, 13%) | |
hsl(51, 100%, 13%) |
#29271b Color Usage In CSS
body { color: #29271b; } p { color: rgb(41, 39, 27); } header { border-bottom:1px solid #29271b; }