#93a414 Color
Color Codes | |
---|---|
Hex Code | #93a414 |
RGB Code | rgb(147, 164, 20) |
HSL Code | hsl(67, 78%, 36%) |
#93a414 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 164, 20); }
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(67, 78%, 36%); }
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 #93a414
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 164, 20, 10%) | #93a4141a | |
rgb(147, 164, 20, 20%) | #93a41433 | |
rgb(147, 164, 20, 40%) | #93a4144C | |
rgb(147, 164, 20, 60%) | #93a41499 | |
rgb(147, 164, 20, 80%) | #93a414CC | |
rgb(147, 164, 20, 100%) | #93a414FF |
Saturated and desaturated colors of #93a414
HSL Code | Preview |
---|---|
hsl(67, 10%, 36%) | |
hsl(67, 20%, 36%) | |
hsl(67, 40%, 36%) | |
hsl(67, 60%, 36%) | |
hsl(67, 80%, 36%) | |
hsl(67, 100%, 36%) |
#93a414 Color Usage In CSS
body { color: #93a414; } p { color: rgb(147, 164, 20); } header { border-bottom:1px solid #93a414; }