#6f9200 Color
Color Codes | |
---|---|
Hex Code | #6f9200 |
RGB Code | rgb(111, 146, 00) |
HSL Code | hsl(74, 100%, 29%) |
#6f9200 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 146, 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(74, 100%, 29%); }
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 #6f9200
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 146, 00, 10%) | #6f92001a | |
rgb(111, 146, 00, 20%) | #6f920033 | |
rgb(111, 146, 00, 40%) | #6f92004C | |
rgb(111, 146, 00, 60%) | #6f920099 | |
rgb(111, 146, 00, 80%) | #6f9200CC | |
rgb(111, 146, 00, 100%) | #6f9200FF |
Saturated and desaturated colors of #6f9200
HSL Code | Preview |
---|---|
hsl(74, 10%, 29%) | |
hsl(74, 20%, 29%) | |
hsl(74, 40%, 29%) | |
hsl(74, 60%, 29%) | |
hsl(74, 80%, 29%) | |
hsl(74, 100%, 29%) |
#6f9200 Color Usage In CSS
body { color: #6f9200; } p { color: rgb(111, 146, 00); } header { border-bottom:1px solid #6f9200; }