#74a379 Color
Color Codes | |
---|---|
Hex Code | #74a379 |
RGB Code | rgb(116, 163, 121) |
HSL Code | hsl(126, 20%, 55%) |
#74a379 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 163, 121); }
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(126, 20%, 55%); }
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 #74a379
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 163, 121, 10%) | #74a3791a | |
rgb(116, 163, 121, 20%) | #74a37933 | |
rgb(116, 163, 121, 40%) | #74a3794C | |
rgb(116, 163, 121, 60%) | #74a37999 | |
rgb(116, 163, 121, 80%) | #74a379CC | |
rgb(116, 163, 121, 100%) | #74a379FF |
Saturated and desaturated colors of #74a379
HSL Code | Preview |
---|---|
hsl(126, 10%, 55%) | |
hsl(126, 20%, 55%) | |
hsl(126, 40%, 55%) | |
hsl(126, 60%, 55%) | |
hsl(126, 80%, 55%) | |
hsl(126, 100%, 55%) |
#74a379 Color Usage In CSS
body { color: #74a379; } p { color: rgb(116, 163, 121); } header { border-bottom:1px solid #74a379; }