#befa37 Color
Color Codes | |
---|---|
Hex Code | #befa37 |
RGB Code | rgb(190, 250, 55) |
HSL Code | hsl(78, 95%, 60%) |
#befa37 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 250, 55); }
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(78, 95%, 60%); }
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 #befa37
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 250, 55, 10%) | #befa371a | |
rgb(190, 250, 55, 20%) | #befa3733 | |
rgb(190, 250, 55, 40%) | #befa374C | |
rgb(190, 250, 55, 60%) | #befa3799 | |
rgb(190, 250, 55, 80%) | #befa37CC | |
rgb(190, 250, 55, 100%) | #befa37FF |
Saturated and desaturated colors of #befa37
HSL Code | Preview |
---|---|
hsl(78, 10%, 60%) | |
hsl(78, 20%, 60%) | |
hsl(78, 40%, 60%) | |
hsl(78, 60%, 60%) | |
hsl(78, 80%, 60%) | |
hsl(78, 100%, 60%) |
#befa37 Color Usage In CSS
body { color: #befa37; } p { color: rgb(190, 250, 55); } header { border-bottom:1px solid #befa37; }