#beba78 Color
Color Codes | |
---|---|
Hex Code | #beba78 |
RGB Code | rgb(190, 186, 120) |
HSL Code | hsl(57, 35%, 61%) |
#beba78 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 186, 120); }
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(57, 35%, 61%); }
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 #beba78
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 186, 120, 10%) | #beba781a | |
rgb(190, 186, 120, 20%) | #beba7833 | |
rgb(190, 186, 120, 40%) | #beba784C | |
rgb(190, 186, 120, 60%) | #beba7899 | |
rgb(190, 186, 120, 80%) | #beba78CC | |
rgb(190, 186, 120, 100%) | #beba78FF |
Saturated and desaturated colors of #beba78
HSL Code | Preview |
---|---|
hsl(57, 10%, 61%) | |
hsl(57, 20%, 61%) | |
hsl(57, 40%, 61%) | |
hsl(57, 60%, 61%) | |
hsl(57, 80%, 61%) | |
hsl(57, 100%, 61%) |
#beba78 Color Usage In CSS
body { color: #beba78; } p { color: rgb(190, 186, 120); } header { border-bottom:1px solid #beba78; }