#bff950 Color
Color Codes | |
---|---|
Hex Code | #bff950 |
RGB Code | rgb(191, 249, 80) |
HSL Code | hsl(81, 93%, 65%) |
#bff950 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 249, 80); }
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(81, 93%, 65%); }
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 #bff950
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 249, 80, 10%) | #bff9501a | |
rgb(191, 249, 80, 20%) | #bff95033 | |
rgb(191, 249, 80, 40%) | #bff9504C | |
rgb(191, 249, 80, 60%) | #bff95099 | |
rgb(191, 249, 80, 80%) | #bff950CC | |
rgb(191, 249, 80, 100%) | #bff950FF |
Saturated and desaturated colors of #bff950
HSL Code | Preview |
---|---|
hsl(81, 10%, 65%) | |
hsl(81, 20%, 65%) | |
hsl(81, 40%, 65%) | |
hsl(81, 60%, 65%) | |
hsl(81, 80%, 65%) | |
hsl(81, 100%, 65%) |
#bff950 Color Usage In CSS
body { color: #bff950; } p { color: rgb(191, 249, 80); } header { border-bottom:1px solid #bff950; }