#1bf605 Color
Color Codes | |
---|---|
Hex Code | #1bf605 |
RGB Code | rgb(27, 246, 05) |
HSL Code | hsl(115, 96%, 49%) |
#1bf605 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(27, 246, 05); }
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(115, 96%, 49%); }
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 #1bf605
RGB Code | Hex Code | Preview |
---|---|---|
rgb(27, 246, 05, 10%) | #1bf6051a | |
rgb(27, 246, 05, 20%) | #1bf60533 | |
rgb(27, 246, 05, 40%) | #1bf6054C | |
rgb(27, 246, 05, 60%) | #1bf60599 | |
rgb(27, 246, 05, 80%) | #1bf605CC | |
rgb(27, 246, 05, 100%) | #1bf605FF |
Saturated and desaturated colors of #1bf605
HSL Code | Preview |
---|---|
hsl(115, 10%, 49%) | |
hsl(115, 20%, 49%) | |
hsl(115, 40%, 49%) | |
hsl(115, 60%, 49%) | |
hsl(115, 80%, 49%) | |
hsl(115, 100%, 49%) |
#1bf605 Color Usage In CSS
body { color: #1bf605; } p { color: rgb(27, 246, 05); } header { border-bottom:1px solid #1bf605; }