#c69c05 Color
Color Codes | |
---|---|
Hex Code | #c69c05 |
RGB Code | rgb(198, 156, 05) |
HSL Code | hsl(47, 95%, 40%) |
#c69c05 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(198, 156, 05); }
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(47, 95%, 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 #c69c05
RGB Code | Hex Code | Preview |
---|---|---|
rgb(198, 156, 05, 10%) | #c69c051a | |
rgb(198, 156, 05, 20%) | #c69c0533 | |
rgb(198, 156, 05, 40%) | #c69c054C | |
rgb(198, 156, 05, 60%) | #c69c0599 | |
rgb(198, 156, 05, 80%) | #c69c05CC | |
rgb(198, 156, 05, 100%) | #c69c05FF |
Saturated and desaturated colors of #c69c05
HSL Code | Preview |
---|---|
hsl(47, 10%, 40%) | |
hsl(47, 20%, 40%) | |
hsl(47, 40%, 40%) | |
hsl(47, 60%, 40%) | |
hsl(47, 80%, 40%) | |
hsl(47, 100%, 40%) |
#c69c05 Color Usage In CSS
body { color: #c69c05; } p { color: rgb(198, 156, 05); } header { border-bottom:1px solid #c69c05; }