#200305 Color
Color Codes | |
---|---|
Hex Code | #200305 |
RGB Code | rgb(32, 03, 05) |
HSL Code | hsl(356, 83%, 7%) |
#200305 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(32, 03, 05); }
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(356, 83%, 7%); }
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 #200305
RGB Code | Hex Code | Preview |
---|---|---|
rgb(32, 03, 05, 10%) | #2003051a | |
rgb(32, 03, 05, 20%) | #20030533 | |
rgb(32, 03, 05, 40%) | #2003054C | |
rgb(32, 03, 05, 60%) | #20030599 | |
rgb(32, 03, 05, 80%) | #200305CC | |
rgb(32, 03, 05, 100%) | #200305FF |
Saturated and desaturated colors of #200305
HSL Code | Preview |
---|---|
hsl(356, 10%, 7%) | |
hsl(356, 20%, 7%) | |
hsl(356, 40%, 7%) | |
hsl(356, 60%, 7%) | |
hsl(356, 80%, 7%) | |
hsl(356, 100%, 7%) |
#200305 Color Usage In CSS
body { color: #200305; } p { color: rgb(32, 03, 05); } header { border-bottom:1px solid #200305; }