#c94208 Color
Color Codes | |
---|---|
Hex Code | #c94208 |
RGB Code | rgb(201, 66, 08) |
HSL Code | hsl(18, 92%, 41%) |
#c94208 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 66, 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(18, 92%, 41%); }
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 #c94208
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 66, 08, 10%) | #c942081a | |
rgb(201, 66, 08, 20%) | #c9420833 | |
rgb(201, 66, 08, 40%) | #c942084C | |
rgb(201, 66, 08, 60%) | #c9420899 | |
rgb(201, 66, 08, 80%) | #c94208CC | |
rgb(201, 66, 08, 100%) | #c94208FF |
Saturated and desaturated colors of #c94208
HSL Code | Preview |
---|---|
hsl(18, 10%, 41%) | |
hsl(18, 20%, 41%) | |
hsl(18, 40%, 41%) | |
hsl(18, 60%, 41%) | |
hsl(18, 80%, 41%) | |
hsl(18, 100%, 41%) |
#c94208 Color Usage In CSS
body { color: #c94208; } p { color: rgb(201, 66, 08); } header { border-bottom:1px solid #c94208; }