#04b64c Color
Color Codes | |
---|---|
Hex Code | #04b64c |
RGB Code | rgb(04, 182, 76) |
HSL Code | hsl(144, 96%, 36%) |
#04b64c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(04, 182, 76); }
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(144, 96%, 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 #04b64c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(04, 182, 76, 10%) | #04b64c1a | |
rgb(04, 182, 76, 20%) | #04b64c33 | |
rgb(04, 182, 76, 40%) | #04b64c4C | |
rgb(04, 182, 76, 60%) | #04b64c99 | |
rgb(04, 182, 76, 80%) | #04b64cCC | |
rgb(04, 182, 76, 100%) | #04b64cFF |
Saturated and desaturated colors of #04b64c
HSL Code | Preview |
---|---|
hsl(144, 10%, 36%) | |
hsl(144, 20%, 36%) | |
hsl(144, 40%, 36%) | |
hsl(144, 60%, 36%) | |
hsl(144, 80%, 36%) | |
hsl(144, 100%, 36%) |
#04b64c Color Usage In CSS
body { color: #04b64c; } p { color: rgb(04, 182, 76); } header { border-bottom:1px solid #04b64c; }