#292504 Color
Color Codes | |
---|---|
Hex Code | #292504 |
RGB Code | rgb(41, 37, 04) |
HSL Code | hsl(54, 82%, 9%) |
#292504 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(41, 37, 04); }
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(54, 82%, 9%); }
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 #292504
RGB Code | Hex Code | Preview |
---|---|---|
rgb(41, 37, 04, 10%) | #2925041a | |
rgb(41, 37, 04, 20%) | #29250433 | |
rgb(41, 37, 04, 40%) | #2925044C | |
rgb(41, 37, 04, 60%) | #29250499 | |
rgb(41, 37, 04, 80%) | #292504CC | |
rgb(41, 37, 04, 100%) | #292504FF |
Saturated and desaturated colors of #292504
HSL Code | Preview |
---|---|
hsl(54, 10%, 9%) | |
hsl(54, 20%, 9%) | |
hsl(54, 40%, 9%) | |
hsl(54, 60%, 9%) | |
hsl(54, 80%, 9%) | |
hsl(54, 100%, 9%) |
#292504 Color Usage In CSS
body { color: #292504; } p { color: rgb(41, 37, 04); } header { border-bottom:1px solid #292504; }