#454b22 Color
Color Codes | |
---|---|
Hex Code | #454b22 |
RGB Code | rgb(69, 75, 34) |
HSL Code | hsl(69, 38%, 21%) |
#454b22 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(69, 75, 34); }
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(69, 38%, 21%); }
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 #454b22
RGB Code | Hex Code | Preview |
---|---|---|
rgb(69, 75, 34, 10%) | #454b221a | |
rgb(69, 75, 34, 20%) | #454b2233 | |
rgb(69, 75, 34, 40%) | #454b224C | |
rgb(69, 75, 34, 60%) | #454b2299 | |
rgb(69, 75, 34, 80%) | #454b22CC | |
rgb(69, 75, 34, 100%) | #454b22FF |
Saturated and desaturated colors of #454b22
HSL Code | Preview |
---|---|
hsl(69, 10%, 21%) | |
hsl(69, 20%, 21%) | |
hsl(69, 40%, 21%) | |
hsl(69, 60%, 21%) | |
hsl(69, 80%, 21%) | |
hsl(69, 100%, 21%) |
#454b22 Color Usage In CSS
body { color: #454b22; } p { color: rgb(69, 75, 34); } header { border-bottom:1px solid #454b22; }