#b6be4b Color
Color Codes | |
---|---|
Hex Code | #b6be4b |
RGB Code | rgb(182, 190, 75) |
HSL Code | hsl(64, 47%, 52%) |
#b6be4b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 190, 75); }
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(64, 47%, 52%); }
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 #b6be4b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 190, 75, 10%) | #b6be4b1a | |
rgb(182, 190, 75, 20%) | #b6be4b33 | |
rgb(182, 190, 75, 40%) | #b6be4b4C | |
rgb(182, 190, 75, 60%) | #b6be4b99 | |
rgb(182, 190, 75, 80%) | #b6be4bCC | |
rgb(182, 190, 75, 100%) | #b6be4bFF |
Saturated and desaturated colors of #b6be4b
HSL Code | Preview |
---|---|
hsl(64, 10%, 52%) | |
hsl(64, 20%, 52%) | |
hsl(64, 40%, 52%) | |
hsl(64, 60%, 52%) | |
hsl(64, 80%, 52%) | |
hsl(64, 100%, 52%) |
#b6be4b Color Usage In CSS
body { color: #b6be4b; } p { color: rgb(182, 190, 75); } header { border-bottom:1px solid #b6be4b; }