#69831e Color
Color Codes | |
---|---|
Hex Code | #69831e |
RGB Code | rgb(105, 131, 30) |
HSL Code | hsl(75, 63%, 32%) |
#69831e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 131, 30); }
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(75, 63%, 32%); }
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 #69831e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 131, 30, 10%) | #69831e1a | |
rgb(105, 131, 30, 20%) | #69831e33 | |
rgb(105, 131, 30, 40%) | #69831e4C | |
rgb(105, 131, 30, 60%) | #69831e99 | |
rgb(105, 131, 30, 80%) | #69831eCC | |
rgb(105, 131, 30, 100%) | #69831eFF |
Saturated and desaturated colors of #69831e
HSL Code | Preview |
---|---|
hsl(75, 10%, 32%) | |
hsl(75, 20%, 32%) | |
hsl(75, 40%, 32%) | |
hsl(75, 60%, 32%) | |
hsl(75, 80%, 32%) | |
hsl(75, 100%, 32%) |
#69831e Color Usage In CSS
body { color: #69831e; } p { color: rgb(105, 131, 30); } header { border-bottom:1px solid #69831e; }