#5a0206 Color
Color Codes | |
---|---|
Hex Code | #5a0206 |
RGB Code | rgb(90, 02, 06) |
HSL Code | hsl(357, 96%, 18%) |
#5a0206 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 02, 06); }
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(357, 96%, 18%); }
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 #5a0206
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 02, 06, 10%) | #5a02061a | |
rgb(90, 02, 06, 20%) | #5a020633 | |
rgb(90, 02, 06, 40%) | #5a02064C | |
rgb(90, 02, 06, 60%) | #5a020699 | |
rgb(90, 02, 06, 80%) | #5a0206CC | |
rgb(90, 02, 06, 100%) | #5a0206FF |
Saturated and desaturated colors of #5a0206
HSL Code | Preview |
---|---|
hsl(357, 10%, 18%) | |
hsl(357, 20%, 18%) | |
hsl(357, 40%, 18%) | |
hsl(357, 60%, 18%) | |
hsl(357, 80%, 18%) | |
hsl(357, 100%, 18%) |
#5a0206 Color Usage In CSS
body { color: #5a0206; } p { color: rgb(90, 02, 06); } header { border-bottom:1px solid #5a0206; }