#a1b364 Color
Color Codes | |
---|---|
Hex Code | #a1b364 |
RGB Code | rgb(161, 179, 100) |
HSL Code | hsl(74, 34%, 55%) |
#a1b364 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(161, 179, 100); }
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(74, 34%, 55%); }
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 #a1b364
RGB Code | Hex Code | Preview |
---|---|---|
rgb(161, 179, 100, 10%) | #a1b3641a | |
rgb(161, 179, 100, 20%) | #a1b36433 | |
rgb(161, 179, 100, 40%) | #a1b3644C | |
rgb(161, 179, 100, 60%) | #a1b36499 | |
rgb(161, 179, 100, 80%) | #a1b364CC | |
rgb(161, 179, 100, 100%) | #a1b364FF |
Saturated and desaturated colors of #a1b364
HSL Code | Preview |
---|---|
hsl(74, 10%, 55%) | |
hsl(74, 20%, 55%) | |
hsl(74, 40%, 55%) | |
hsl(74, 60%, 55%) | |
hsl(74, 80%, 55%) | |
hsl(74, 100%, 55%) |
#a1b364 Color Usage In CSS
body { color: #a1b364; } p { color: rgb(161, 179, 100); } header { border-bottom:1px solid #a1b364; }