#35689e Color
Color Codes | |
---|---|
Hex Code | #35689e |
RGB Code | rgb(53, 104, 158) |
HSL Code | hsl(211, 50%, 41%) |
#35689e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 104, 158); }
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(211, 50%, 41%); }
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 #35689e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 104, 158, 10%) | #35689e1a | |
rgb(53, 104, 158, 20%) | #35689e33 | |
rgb(53, 104, 158, 40%) | #35689e4C | |
rgb(53, 104, 158, 60%) | #35689e99 | |
rgb(53, 104, 158, 80%) | #35689eCC | |
rgb(53, 104, 158, 100%) | #35689eFF |
Saturated and desaturated colors of #35689e
HSL Code | Preview |
---|---|
hsl(211, 10%, 41%) | |
hsl(211, 20%, 41%) | |
hsl(211, 40%, 41%) | |
hsl(211, 60%, 41%) | |
hsl(211, 80%, 41%) | |
hsl(211, 100%, 41%) |
#35689e Color Usage In CSS
body { color: #35689e; } p { color: rgb(53, 104, 158); } header { border-bottom:1px solid #35689e; }