#75a318 Color
Color Codes | |
---|---|
Hex Code | #75a318 |
RGB Code | rgb(117, 163, 24) |
HSL Code | hsl(80, 74%, 37%) |
#75a318 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(117, 163, 24); }
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(80, 74%, 37%); }
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 #75a318
RGB Code | Hex Code | Preview |
---|---|---|
rgb(117, 163, 24, 10%) | #75a3181a | |
rgb(117, 163, 24, 20%) | #75a31833 | |
rgb(117, 163, 24, 40%) | #75a3184C | |
rgb(117, 163, 24, 60%) | #75a31899 | |
rgb(117, 163, 24, 80%) | #75a318CC | |
rgb(117, 163, 24, 100%) | #75a318FF |
Saturated and desaturated colors of #75a318
HSL Code | Preview |
---|---|
hsl(80, 10%, 37%) | |
hsl(80, 20%, 37%) | |
hsl(80, 40%, 37%) | |
hsl(80, 60%, 37%) | |
hsl(80, 80%, 37%) | |
hsl(80, 100%, 37%) |
#75a318 Color Usage In CSS
body { color: #75a318; } p { color: rgb(117, 163, 24); } header { border-bottom:1px solid #75a318; }