#581233 Color
Color Codes | |
---|---|
Hex Code | #581233 |
RGB Code | rgb(88, 18, 51) |
HSL Code | hsl(332, 66%, 21%) |
#581233 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(88, 18, 51); }
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(332, 66%, 21%); }
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 #581233
RGB Code | Hex Code | Preview |
---|---|---|
rgb(88, 18, 51, 10%) | #5812331a | |
rgb(88, 18, 51, 20%) | #58123333 | |
rgb(88, 18, 51, 40%) | #5812334C | |
rgb(88, 18, 51, 60%) | #58123399 | |
rgb(88, 18, 51, 80%) | #581233CC | |
rgb(88, 18, 51, 100%) | #581233FF |
Saturated and desaturated colors of #581233
HSL Code | Preview |
---|---|
hsl(332, 10%, 21%) | |
hsl(332, 20%, 21%) | |
hsl(332, 40%, 21%) | |
hsl(332, 60%, 21%) | |
hsl(332, 80%, 21%) | |
hsl(332, 100%, 21%) |
#581233 Color Usage In CSS
body { color: #581233; } p { color: rgb(88, 18, 51); } header { border-bottom:1px solid #581233; }