#04a723 Color
Color Codes | |
---|---|
Hex Code | #04a723 |
RGB Code | rgb(04, 167, 35) |
HSL Code | hsl(131, 95%, 34%) |
#04a723 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(04, 167, 35); }
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(131, 95%, 34%); }
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 #04a723
RGB Code | Hex Code | Preview |
---|---|---|
rgb(04, 167, 35, 10%) | #04a7231a | |
rgb(04, 167, 35, 20%) | #04a72333 | |
rgb(04, 167, 35, 40%) | #04a7234C | |
rgb(04, 167, 35, 60%) | #04a72399 | |
rgb(04, 167, 35, 80%) | #04a723CC | |
rgb(04, 167, 35, 100%) | #04a723FF |
Saturated and desaturated colors of #04a723
HSL Code | Preview |
---|---|
hsl(131, 10%, 34%) | |
hsl(131, 20%, 34%) | |
hsl(131, 40%, 34%) | |
hsl(131, 60%, 34%) | |
hsl(131, 80%, 34%) | |
hsl(131, 100%, 34%) |
#04a723 Color Usage In CSS
body { color: #04a723; } p { color: rgb(04, 167, 35); } header { border-bottom:1px solid #04a723; }