#293708 Color
Color Codes | |
---|---|
Hex Code | #293708 |
RGB Code | rgb(41, 55, 08) |
HSL Code | hsl(78, 75%, 12%) |
#293708 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(41, 55, 08); }
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(78, 75%, 12%); }
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 #293708
RGB Code | Hex Code | Preview |
---|---|---|
rgb(41, 55, 08, 10%) | #2937081a | |
rgb(41, 55, 08, 20%) | #29370833 | |
rgb(41, 55, 08, 40%) | #2937084C | |
rgb(41, 55, 08, 60%) | #29370899 | |
rgb(41, 55, 08, 80%) | #293708CC | |
rgb(41, 55, 08, 100%) | #293708FF |
Saturated and desaturated colors of #293708
HSL Code | Preview |
---|---|
hsl(78, 10%, 12%) | |
hsl(78, 20%, 12%) | |
hsl(78, 40%, 12%) | |
hsl(78, 60%, 12%) | |
hsl(78, 80%, 12%) | |
hsl(78, 100%, 12%) |
#293708 Color Usage In CSS
body { color: #293708; } p { color: rgb(41, 55, 08); } header { border-bottom:1px solid #293708; }