#143011 Color
Color Codes | |
---|---|
Hex Code | #143011 |
RGB Code | rgb(20, 48, 17) |
HSL Code | hsl(114, 48%, 13%) |
#143011 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 48, 17); }
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(114, 48%, 13%); }
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 #143011
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 48, 17, 10%) | #1430111a | |
rgb(20, 48, 17, 20%) | #14301133 | |
rgb(20, 48, 17, 40%) | #1430114C | |
rgb(20, 48, 17, 60%) | #14301199 | |
rgb(20, 48, 17, 80%) | #143011CC | |
rgb(20, 48, 17, 100%) | #143011FF |
Saturated and desaturated colors of #143011
HSL Code | Preview |
---|---|
hsl(114, 10%, 13%) | |
hsl(114, 20%, 13%) | |
hsl(114, 40%, 13%) | |
hsl(114, 60%, 13%) | |
hsl(114, 80%, 13%) | |
hsl(114, 100%, 13%) |
#143011 Color Usage In CSS
body { color: #143011; } p { color: rgb(20, 48, 17); } header { border-bottom:1px solid #143011; }