#bfc427 Color
Color Codes | |
---|---|
Hex Code | #bfc427 |
RGB Code | rgb(191, 196, 39) |
HSL Code | hsl(62, 67%, 46%) |
#bfc427 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 196, 39); }
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(62, 67%, 46%); }
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 #bfc427
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 196, 39, 10%) | #bfc4271a | |
rgb(191, 196, 39, 20%) | #bfc42733 | |
rgb(191, 196, 39, 40%) | #bfc4274C | |
rgb(191, 196, 39, 60%) | #bfc42799 | |
rgb(191, 196, 39, 80%) | #bfc427CC | |
rgb(191, 196, 39, 100%) | #bfc427FF |
Saturated and desaturated colors of #bfc427
HSL Code | Preview |
---|---|
hsl(62, 10%, 46%) | |
hsl(62, 20%, 46%) | |
hsl(62, 40%, 46%) | |
hsl(62, 60%, 46%) | |
hsl(62, 80%, 46%) | |
hsl(62, 100%, 46%) |
#bfc427 Color Usage In CSS
body { color: #bfc427; } p { color: rgb(191, 196, 39); } header { border-bottom:1px solid #bfc427; }