#145f32 Color
Color Codes | |
---|---|
Hex Code | #145f32 |
RGB Code | rgb(20, 95, 50) |
HSL Code | hsl(144, 65%, 23%) |
#145f32 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 95, 50); }
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(144, 65%, 23%); }
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 #145f32
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 95, 50, 10%) | #145f321a | |
rgb(20, 95, 50, 20%) | #145f3233 | |
rgb(20, 95, 50, 40%) | #145f324C | |
rgb(20, 95, 50, 60%) | #145f3299 | |
rgb(20, 95, 50, 80%) | #145f32CC | |
rgb(20, 95, 50, 100%) | #145f32FF |
Saturated and desaturated colors of #145f32
HSL Code | Preview |
---|---|
hsl(144, 10%, 23%) | |
hsl(144, 20%, 23%) | |
hsl(144, 40%, 23%) | |
hsl(144, 60%, 23%) | |
hsl(144, 80%, 23%) | |
hsl(144, 100%, 23%) |
#145f32 Color Usage In CSS
body { color: #145f32; } p { color: rgb(20, 95, 50); } header { border-bottom:1px solid #145f32; }