#605d79 Color
Color Codes | |
---|---|
Hex Code | #605d79 |
RGB Code | rgb(96, 93, 121) |
HSL Code | hsl(246, 13%, 42%) |
#605d79 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(96, 93, 121); }
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(246, 13%, 42%); }
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 #605d79
RGB Code | Hex Code | Preview |
---|---|---|
rgb(96, 93, 121, 10%) | #605d791a | |
rgb(96, 93, 121, 20%) | #605d7933 | |
rgb(96, 93, 121, 40%) | #605d794C | |
rgb(96, 93, 121, 60%) | #605d7999 | |
rgb(96, 93, 121, 80%) | #605d79CC | |
rgb(96, 93, 121, 100%) | #605d79FF |
Saturated and desaturated colors of #605d79
HSL Code | Preview |
---|---|
hsl(246, 10%, 42%) | |
hsl(246, 20%, 42%) | |
hsl(246, 40%, 42%) | |
hsl(246, 60%, 42%) | |
hsl(246, 80%, 42%) | |
hsl(246, 100%, 42%) |
#605d79 Color Usage In CSS
body { color: #605d79; } p { color: rgb(96, 93, 121); } header { border-bottom:1px solid #605d79; }