#455800 Color
Color Codes | |
---|---|
Hex Code | #455800 |
RGB Code | rgb(69, 88, 00) |
HSL Code | hsl(73, 100%, 17%) |
#455800 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(69, 88, 00); }
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(73, 100%, 17%); }
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 #455800
RGB Code | Hex Code | Preview |
---|---|---|
rgb(69, 88, 00, 10%) | #4558001a | |
rgb(69, 88, 00, 20%) | #45580033 | |
rgb(69, 88, 00, 40%) | #4558004C | |
rgb(69, 88, 00, 60%) | #45580099 | |
rgb(69, 88, 00, 80%) | #455800CC | |
rgb(69, 88, 00, 100%) | #455800FF |
Saturated and desaturated colors of #455800
HSL Code | Preview |
---|---|
hsl(73, 10%, 17%) | |
hsl(73, 20%, 17%) | |
hsl(73, 40%, 17%) | |
hsl(73, 60%, 17%) | |
hsl(73, 80%, 17%) | |
hsl(73, 100%, 17%) |
#455800 Color Usage In CSS
body { color: #455800; } p { color: rgb(69, 88, 00); } header { border-bottom:1px solid #455800; }