#a8683e Color
Color Codes | |
---|---|
Hex Code | #a8683e |
RGB Code | rgb(168, 104, 62) |
HSL Code | hsl(24, 46%, 45%) |
#a8683e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(168, 104, 62); }
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, 46%, 45%); }
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 #a8683e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(168, 104, 62, 10%) | #a8683e1a | |
rgb(168, 104, 62, 20%) | #a8683e33 | |
rgb(168, 104, 62, 40%) | #a8683e4C | |
rgb(168, 104, 62, 60%) | #a8683e99 | |
rgb(168, 104, 62, 80%) | #a8683eCC | |
rgb(168, 104, 62, 100%) | #a8683eFF |
Saturated and desaturated colors of #a8683e
HSL Code | Preview |
---|---|
hsl(24, 10%, 45%) | |
hsl(24, 20%, 45%) | |
hsl(24, 40%, 45%) | |
hsl(24, 60%, 45%) | |
hsl(24, 80%, 45%) | |
hsl(24, 100%, 45%) |
#a8683e Color Usage In CSS
body { color: #a8683e; } p { color: rgb(168, 104, 62); } header { border-bottom:1px solid #a8683e; }