#c36809 Color
Color Codes | |
---|---|
Hex Code | #c36809 |
RGB Code | rgb(195, 104, 09) |
HSL Code | hsl(31, 91%, 40%) |
#c36809 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 104, 09); }
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(31, 91%, 40%); }
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 #c36809
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 104, 09, 10%) | #c368091a | |
rgb(195, 104, 09, 20%) | #c3680933 | |
rgb(195, 104, 09, 40%) | #c368094C | |
rgb(195, 104, 09, 60%) | #c3680999 | |
rgb(195, 104, 09, 80%) | #c36809CC | |
rgb(195, 104, 09, 100%) | #c36809FF |
Saturated and desaturated colors of #c36809
HSL Code | Preview |
---|---|
hsl(31, 10%, 40%) | |
hsl(31, 20%, 40%) | |
hsl(31, 40%, 40%) | |
hsl(31, 60%, 40%) | |
hsl(31, 80%, 40%) | |
hsl(31, 100%, 40%) |
#c36809 Color Usage In CSS
body { color: #c36809; } p { color: rgb(195, 104, 09); } header { border-bottom:1px solid #c36809; }