#442688 Color
Color Codes | |
---|---|
Hex Code | #442688 |
RGB Code | rgb(68, 38, 136) |
HSL Code | hsl(258, 56%, 34%) |
#442688 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 38, 136); }
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(258, 56%, 34%); }
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 #442688
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 38, 136, 10%) | #4426881a | |
rgb(68, 38, 136, 20%) | #44268833 | |
rgb(68, 38, 136, 40%) | #4426884C | |
rgb(68, 38, 136, 60%) | #44268899 | |
rgb(68, 38, 136, 80%) | #442688CC | |
rgb(68, 38, 136, 100%) | #442688FF |
Saturated and desaturated colors of #442688
HSL Code | Preview |
---|---|
hsl(258, 10%, 34%) | |
hsl(258, 20%, 34%) | |
hsl(258, 40%, 34%) | |
hsl(258, 60%, 34%) | |
hsl(258, 80%, 34%) | |
hsl(258, 100%, 34%) |
#442688 Color Usage In CSS
body { color: #442688; } p { color: rgb(68, 38, 136); } header { border-bottom:1px solid #442688; }