#ca8f68 Color
Color Codes | |
---|---|
Hex Code | #ca8f68 |
RGB Code | rgb(202, 143, 104) |
HSL Code | hsl(24, 48%, 60%) |
#ca8f68 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 143, 104); }
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(24, 48%, 60%); }
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 #ca8f68
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 143, 104, 10%) | #ca8f681a | |
rgb(202, 143, 104, 20%) | #ca8f6833 | |
rgb(202, 143, 104, 40%) | #ca8f684C | |
rgb(202, 143, 104, 60%) | #ca8f6899 | |
rgb(202, 143, 104, 80%) | #ca8f68CC | |
rgb(202, 143, 104, 100%) | #ca8f68FF |
Saturated and desaturated colors of #ca8f68
HSL Code | Preview |
---|---|
hsl(24, 10%, 60%) | |
hsl(24, 20%, 60%) | |
hsl(24, 40%, 60%) | |
hsl(24, 60%, 60%) | |
hsl(24, 80%, 60%) | |
hsl(24, 100%, 60%) |
#ca8f68 Color Usage In CSS
body { color: #ca8f68; } p { color: rgb(202, 143, 104); } header { border-bottom:1px solid #ca8f68; }