#c19f09 Color
Color Codes | |
---|---|
Hex Code | #c19f09 |
RGB Code | rgb(193, 159, 09) |
HSL Code | hsl(49, 91%, 40%) |
#c19f09 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 159, 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(49, 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 #c19f09
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 159, 09, 10%) | #c19f091a | |
rgb(193, 159, 09, 20%) | #c19f0933 | |
rgb(193, 159, 09, 40%) | #c19f094C | |
rgb(193, 159, 09, 60%) | #c19f0999 | |
rgb(193, 159, 09, 80%) | #c19f09CC | |
rgb(193, 159, 09, 100%) | #c19f09FF |
Saturated and desaturated colors of #c19f09
HSL Code | Preview |
---|---|
hsl(49, 10%, 40%) | |
hsl(49, 20%, 40%) | |
hsl(49, 40%, 40%) | |
hsl(49, 60%, 40%) | |
hsl(49, 80%, 40%) | |
hsl(49, 100%, 40%) |
#c19f09 Color Usage In CSS
body { color: #c19f09; } p { color: rgb(193, 159, 09); } header { border-bottom:1px solid #c19f09; }