#bffe04 Color
Color Codes | |
---|---|
Hex Code | #bffe04 |
RGB Code | rgb(191, 254, 04) |
HSL Code | hsl(75, 99%, 51%) |
#bffe04 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 254, 04); }
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(75, 99%, 51%); }
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 #bffe04
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 254, 04, 10%) | #bffe041a | |
rgb(191, 254, 04, 20%) | #bffe0433 | |
rgb(191, 254, 04, 40%) | #bffe044C | |
rgb(191, 254, 04, 60%) | #bffe0499 | |
rgb(191, 254, 04, 80%) | #bffe04CC | |
rgb(191, 254, 04, 100%) | #bffe04FF |
Saturated and desaturated colors of #bffe04
HSL Code | Preview |
---|---|
hsl(75, 10%, 51%) | |
hsl(75, 20%, 51%) | |
hsl(75, 40%, 51%) | |
hsl(75, 60%, 51%) | |
hsl(75, 80%, 51%) | |
hsl(75, 100%, 51%) |
#bffe04 Color Usage In CSS
body { color: #bffe04; } p { color: rgb(191, 254, 04); } header { border-bottom:1px solid #bffe04; }