#6f8209 Color
Color Codes | |
---|---|
Hex Code | #6f8209 |
RGB Code | rgb(111, 130, 09) |
HSL Code | hsl(69, 87%, 27%) |
#6f8209 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 130, 09); }
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, 87%, 27%); }
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 #6f8209
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 130, 09, 10%) | #6f82091a | |
rgb(111, 130, 09, 20%) | #6f820933 | |
rgb(111, 130, 09, 40%) | #6f82094C | |
rgb(111, 130, 09, 60%) | #6f820999 | |
rgb(111, 130, 09, 80%) | #6f8209CC | |
rgb(111, 130, 09, 100%) | #6f8209FF |
Saturated and desaturated colors of #6f8209
HSL Code | Preview |
---|---|
hsl(69, 10%, 27%) | |
hsl(69, 20%, 27%) | |
hsl(69, 40%, 27%) | |
hsl(69, 60%, 27%) | |
hsl(69, 80%, 27%) | |
hsl(69, 100%, 27%) |
#6f8209 Color Usage In CSS
body { color: #6f8209; } p { color: rgb(111, 130, 09); } header { border-bottom:1px solid #6f8209; }