#c35b08 Color
Color Codes | |
---|---|
Hex Code | #c35b08 |
RGB Code | rgb(195, 91, 08) |
HSL Code | hsl(27, 92%, 40%) |
#c35b08 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 91, 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(27, 92%, 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 #c35b08
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 91, 08, 10%) | #c35b081a | |
rgb(195, 91, 08, 20%) | #c35b0833 | |
rgb(195, 91, 08, 40%) | #c35b084C | |
rgb(195, 91, 08, 60%) | #c35b0899 | |
rgb(195, 91, 08, 80%) | #c35b08CC | |
rgb(195, 91, 08, 100%) | #c35b08FF |
Saturated and desaturated colors of #c35b08
HSL Code | Preview |
---|---|
hsl(27, 10%, 40%) | |
hsl(27, 20%, 40%) | |
hsl(27, 40%, 40%) | |
hsl(27, 60%, 40%) | |
hsl(27, 80%, 40%) | |
hsl(27, 100%, 40%) |
#c35b08 Color Usage In CSS
body { color: #c35b08; } p { color: rgb(195, 91, 08); } header { border-bottom:1px solid #c35b08; }