#032331 Color
Color Codes | |
---|---|
Hex Code | #032331 |
RGB Code | rgb(03, 35, 49) |
HSL Code | hsl(198, 88%, 10%) |
#032331 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 35, 49); }
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(198, 88%, 10%); }
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 #032331
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 35, 49, 10%) | #0323311a | |
rgb(03, 35, 49, 20%) | #03233133 | |
rgb(03, 35, 49, 40%) | #0323314C | |
rgb(03, 35, 49, 60%) | #03233199 | |
rgb(03, 35, 49, 80%) | #032331CC | |
rgb(03, 35, 49, 100%) | #032331FF |
Saturated and desaturated colors of #032331
HSL Code | Preview |
---|---|
hsl(198, 10%, 10%) | |
hsl(198, 20%, 10%) | |
hsl(198, 40%, 10%) | |
hsl(198, 60%, 10%) | |
hsl(198, 80%, 10%) | |
hsl(198, 100%, 10%) |
#032331 Color Usage In CSS
body { color: #032331; } p { color: rgb(03, 35, 49); } header { border-bottom:1px solid #032331; }