#bcd915 Color
Color Codes | |
---|---|
Hex Code | #bcd915 |
RGB Code | rgb(188, 217, 21) |
HSL Code | hsl(69, 82%, 47%) |
#bcd915 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 217, 21); }
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(69, 82%, 47%); }
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 #bcd915
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 217, 21, 10%) | #bcd9151a | |
rgb(188, 217, 21, 20%) | #bcd91533 | |
rgb(188, 217, 21, 40%) | #bcd9154C | |
rgb(188, 217, 21, 60%) | #bcd91599 | |
rgb(188, 217, 21, 80%) | #bcd915CC | |
rgb(188, 217, 21, 100%) | #bcd915FF |
Saturated and desaturated colors of #bcd915
HSL Code | Preview |
---|---|
hsl(69, 10%, 47%) | |
hsl(69, 20%, 47%) | |
hsl(69, 40%, 47%) | |
hsl(69, 60%, 47%) | |
hsl(69, 80%, 47%) | |
hsl(69, 100%, 47%) |
#bcd915 Color Usage In CSS
body { color: #bcd915; } p { color: rgb(188, 217, 21); } header { border-bottom:1px solid #bcd915; }