#748125 Color
Color Codes | |
---|---|
Hex Code | #748125 |
RGB Code | rgb(116, 129, 37) |
HSL Code | hsl(68, 55%, 33%) |
#748125 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 129, 37); }
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(68, 55%, 33%); }
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 #748125
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 129, 37, 10%) | #7481251a | |
rgb(116, 129, 37, 20%) | #74812533 | |
rgb(116, 129, 37, 40%) | #7481254C | |
rgb(116, 129, 37, 60%) | #74812599 | |
rgb(116, 129, 37, 80%) | #748125CC | |
rgb(116, 129, 37, 100%) | #748125FF |
Saturated and desaturated colors of #748125
HSL Code | Preview |
---|---|
hsl(68, 10%, 33%) | |
hsl(68, 20%, 33%) | |
hsl(68, 40%, 33%) | |
hsl(68, 60%, 33%) | |
hsl(68, 80%, 33%) | |
hsl(68, 100%, 33%) |
#748125 Color Usage In CSS
body { color: #748125; } p { color: rgb(116, 129, 37); } header { border-bottom:1px solid #748125; }