#345665 Color
Color Codes | |
---|---|
Hex Code | #345665 |
RGB Code | rgb(52, 86, 101) |
HSL Code | hsl(198, 32%, 30%) |
#345665 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(52, 86, 101); }
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, 32%, 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 #345665
RGB Code | Hex Code | Preview |
---|---|---|
rgb(52, 86, 101, 10%) | #3456651a | |
rgb(52, 86, 101, 20%) | #34566533 | |
rgb(52, 86, 101, 40%) | #3456654C | |
rgb(52, 86, 101, 60%) | #34566599 | |
rgb(52, 86, 101, 80%) | #345665CC | |
rgb(52, 86, 101, 100%) | #345665FF |
Saturated and desaturated colors of #345665
HSL Code | Preview |
---|---|
hsl(198, 10%, 30%) | |
hsl(198, 20%, 30%) | |
hsl(198, 40%, 30%) | |
hsl(198, 60%, 30%) | |
hsl(198, 80%, 30%) | |
hsl(198, 100%, 30%) |
#345665 Color Usage In CSS
body { color: #345665; } p { color: rgb(52, 86, 101); } header { border-bottom:1px solid #345665; }