#363041 Color
Color Codes | |
---|---|
Hex Code | #363041 |
RGB Code | rgb(54, 48, 65) |
HSL Code | hsl(261, 15%, 22%) |
#363041 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 48, 65); }
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(261, 15%, 22%); }
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 #363041
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 48, 65, 10%) | #3630411a | |
rgb(54, 48, 65, 20%) | #36304133 | |
rgb(54, 48, 65, 40%) | #3630414C | |
rgb(54, 48, 65, 60%) | #36304199 | |
rgb(54, 48, 65, 80%) | #363041CC | |
rgb(54, 48, 65, 100%) | #363041FF |
Saturated and desaturated colors of #363041
HSL Code | Preview |
---|---|
hsl(261, 10%, 22%) | |
hsl(261, 20%, 22%) | |
hsl(261, 40%, 22%) | |
hsl(261, 60%, 22%) | |
hsl(261, 80%, 22%) | |
hsl(261, 100%, 22%) |
#363041 Color Usage In CSS
body { color: #363041; } p { color: rgb(54, 48, 65); } header { border-bottom:1px solid #363041; }