#fbc478 Color
Color Codes | |
---|---|
Hex Code | #fbc478 |
RGB Code | rgb(251, 196, 120) |
HSL Code | hsl(35, 94%, 73%) |
#fbc478 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(251, 196, 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(35, 94%, 73%); }
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 #fbc478
RGB Code | Hex Code | Preview |
---|---|---|
rgb(251, 196, 120, 10%) | #fbc4781a | |
rgb(251, 196, 120, 20%) | #fbc47833 | |
rgb(251, 196, 120, 40%) | #fbc4784C | |
rgb(251, 196, 120, 60%) | #fbc47899 | |
rgb(251, 196, 120, 80%) | #fbc478CC | |
rgb(251, 196, 120, 100%) | #fbc478FF |
Saturated and desaturated colors of #fbc478
HSL Code | Preview |
---|---|
hsl(35, 10%, 73%) | |
hsl(35, 20%, 73%) | |
hsl(35, 40%, 73%) | |
hsl(35, 60%, 73%) | |
hsl(35, 80%, 73%) | |
hsl(35, 100%, 73%) |
#fbc478 Color Usage In CSS
body { color: #fbc478; } p { color: rgb(251, 196, 120); } header { border-bottom:1px solid #fbc478; }