#b41700 Color
Color Codes | |
---|---|
Hex Code | #b41700 |
RGB Code | rgb(180, 23, 00) |
HSL Code | hsl(8, 100%, 35%) |
#b41700 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 23, 00); }
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(8, 100%, 35%); }
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 #b41700
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 23, 00, 10%) | #b417001a | |
rgb(180, 23, 00, 20%) | #b4170033 | |
rgb(180, 23, 00, 40%) | #b417004C | |
rgb(180, 23, 00, 60%) | #b4170099 | |
rgb(180, 23, 00, 80%) | #b41700CC | |
rgb(180, 23, 00, 100%) | #b41700FF |
Saturated and desaturated colors of #b41700
HSL Code | Preview |
---|---|
hsl(8, 10%, 35%) | |
hsl(8, 20%, 35%) | |
hsl(8, 40%, 35%) | |
hsl(8, 60%, 35%) | |
hsl(8, 80%, 35%) | |
hsl(8, 100%, 35%) |
#b41700 Color Usage In CSS
body { color: #b41700; } p { color: rgb(180, 23, 00); } header { border-bottom:1px solid #b41700; }