#5fb000 Color
Color Codes | |
---|---|
Hex Code | #5fb000 |
RGB Code | rgb(95, 176, 00) |
HSL Code | hsl(88, 100%, 35%) |
#5fb000 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(95, 176, 00); }
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(88, 100%, 35%); }
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 #5fb000
RGB Code | Hex Code | Preview |
---|---|---|
rgb(95, 176, 00, 10%) | #5fb0001a | |
rgb(95, 176, 00, 20%) | #5fb00033 | |
rgb(95, 176, 00, 40%) | #5fb0004C | |
rgb(95, 176, 00, 60%) | #5fb00099 | |
rgb(95, 176, 00, 80%) | #5fb000CC | |
rgb(95, 176, 00, 100%) | #5fb000FF |
Saturated and desaturated colors of #5fb000
HSL Code | Preview |
---|---|
hsl(88, 10%, 35%) | |
hsl(88, 20%, 35%) | |
hsl(88, 40%, 35%) | |
hsl(88, 60%, 35%) | |
hsl(88, 80%, 35%) | |
hsl(88, 100%, 35%) |
#5fb000 Color Usage In CSS
body { color: #5fb000; } p { color: rgb(95, 176, 00); } header { border-bottom:1px solid #5fb000; }