#375a02 Color
Color Codes | |
---|---|
Hex Code | #375a02 |
RGB Code | rgb(55, 90, 02) |
HSL Code | hsl(84, 96%, 18%) |
#375a02 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(55, 90, 02); }
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(84, 96%, 18%); }
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 #375a02
RGB Code | Hex Code | Preview |
---|---|---|
rgb(55, 90, 02, 10%) | #375a021a | |
rgb(55, 90, 02, 20%) | #375a0233 | |
rgb(55, 90, 02, 40%) | #375a024C | |
rgb(55, 90, 02, 60%) | #375a0299 | |
rgb(55, 90, 02, 80%) | #375a02CC | |
rgb(55, 90, 02, 100%) | #375a02FF |
Saturated and desaturated colors of #375a02
HSL Code | Preview |
---|---|
hsl(84, 10%, 18%) | |
hsl(84, 20%, 18%) | |
hsl(84, 40%, 18%) | |
hsl(84, 60%, 18%) | |
hsl(84, 80%, 18%) | |
hsl(84, 100%, 18%) |
#375a02 Color Usage In CSS
body { color: #375a02; } p { color: rgb(55, 90, 02); } header { border-bottom:1px solid #375a02; }