#bc593a Color
Color Codes | |
---|---|
Hex Code | #bc593a |
RGB Code | rgb(188, 89, 58) |
HSL Code | hsl(14, 53%, 48%) |
#bc593a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 89, 58); }
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(14, 53%, 48%); }
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 #bc593a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 89, 58, 10%) | #bc593a1a | |
rgb(188, 89, 58, 20%) | #bc593a33 | |
rgb(188, 89, 58, 40%) | #bc593a4C | |
rgb(188, 89, 58, 60%) | #bc593a99 | |
rgb(188, 89, 58, 80%) | #bc593aCC | |
rgb(188, 89, 58, 100%) | #bc593aFF |
Saturated and desaturated colors of #bc593a
HSL Code | Preview |
---|---|
hsl(14, 10%, 48%) | |
hsl(14, 20%, 48%) | |
hsl(14, 40%, 48%) | |
hsl(14, 60%, 48%) | |
hsl(14, 80%, 48%) | |
hsl(14, 100%, 48%) |
#bc593a Color Usage In CSS
body { color: #bc593a; } p { color: rgb(188, 89, 58); } header { border-bottom:1px solid #bc593a; }