#bf9523 Color
Color Codes | |
---|---|
Hex Code | #bf9523 |
RGB Code | rgb(191, 149, 35) |
HSL Code | hsl(44, 69%, 44%) |
#bf9523 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 149, 35); }
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(44, 69%, 44%); }
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 #bf9523
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 149, 35, 10%) | #bf95231a | |
rgb(191, 149, 35, 20%) | #bf952333 | |
rgb(191, 149, 35, 40%) | #bf95234C | |
rgb(191, 149, 35, 60%) | #bf952399 | |
rgb(191, 149, 35, 80%) | #bf9523CC | |
rgb(191, 149, 35, 100%) | #bf9523FF |
Saturated and desaturated colors of #bf9523
HSL Code | Preview |
---|---|
hsl(44, 10%, 44%) | |
hsl(44, 20%, 44%) | |
hsl(44, 40%, 44%) | |
hsl(44, 60%, 44%) | |
hsl(44, 80%, 44%) | |
hsl(44, 100%, 44%) |
#bf9523 Color Usage In CSS
body { color: #bf9523; } p { color: rgb(191, 149, 35); } header { border-bottom:1px solid #bf9523; }