#09f768 Color
Color Codes | |
---|---|
Hex Code | #09f768 |
RGB Code | rgb(09, 247, 104) |
HSL Code | hsl(144, 94%, 50%) |
#09f768 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 247, 104); }
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, 94%, 50%); }
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 #09f768
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 247, 104, 10%) | #09f7681a | |
rgb(09, 247, 104, 20%) | #09f76833 | |
rgb(09, 247, 104, 40%) | #09f7684C | |
rgb(09, 247, 104, 60%) | #09f76899 | |
rgb(09, 247, 104, 80%) | #09f768CC | |
rgb(09, 247, 104, 100%) | #09f768FF |
Saturated and desaturated colors of #09f768
HSL Code | Preview |
---|---|
hsl(144, 10%, 50%) | |
hsl(144, 20%, 50%) | |
hsl(144, 40%, 50%) | |
hsl(144, 60%, 50%) | |
hsl(144, 80%, 50%) | |
hsl(144, 100%, 50%) |
#09f768 Color Usage In CSS
body { color: #09f768; } p { color: rgb(09, 247, 104); } header { border-bottom:1px solid #09f768; }