#a66335 Color
Color Codes | |
---|---|
Hex Code | #a66335 |
RGB Code | rgb(166, 99, 53) |
HSL Code | hsl(24, 52%, 43%) |
#a66335 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(166, 99, 53); }
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, 52%, 43%); }
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 #a66335
RGB Code | Hex Code | Preview |
---|---|---|
rgb(166, 99, 53, 10%) | #a663351a | |
rgb(166, 99, 53, 20%) | #a6633533 | |
rgb(166, 99, 53, 40%) | #a663354C | |
rgb(166, 99, 53, 60%) | #a6633599 | |
rgb(166, 99, 53, 80%) | #a66335CC | |
rgb(166, 99, 53, 100%) | #a66335FF |
Saturated and desaturated colors of #a66335
HSL Code | Preview |
---|---|
hsl(24, 10%, 43%) | |
hsl(24, 20%, 43%) | |
hsl(24, 40%, 43%) | |
hsl(24, 60%, 43%) | |
hsl(24, 80%, 43%) | |
hsl(24, 100%, 43%) |
#a66335 Color Usage In CSS
body { color: #a66335; } p { color: rgb(166, 99, 53); } header { border-bottom:1px solid #a66335; }