#326864 Color
Color Codes | |
---|---|
Hex Code | #326864 |
RGB Code | rgb(50, 104, 100) |
HSL Code | hsl(176, 35%, 30%) |
#326864 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(50, 104, 100); }
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(176, 35%, 30%); }
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 #326864
RGB Code | Hex Code | Preview |
---|---|---|
rgb(50, 104, 100, 10%) | #3268641a | |
rgb(50, 104, 100, 20%) | #32686433 | |
rgb(50, 104, 100, 40%) | #3268644C | |
rgb(50, 104, 100, 60%) | #32686499 | |
rgb(50, 104, 100, 80%) | #326864CC | |
rgb(50, 104, 100, 100%) | #326864FF |
Saturated and desaturated colors of #326864
HSL Code | Preview |
---|---|
hsl(176, 10%, 30%) | |
hsl(176, 20%, 30%) | |
hsl(176, 40%, 30%) | |
hsl(176, 60%, 30%) | |
hsl(176, 80%, 30%) | |
hsl(176, 100%, 30%) |
#326864 Color Usage In CSS
body { color: #326864; } p { color: rgb(50, 104, 100); } header { border-bottom:1px solid #326864; }