#680d9d Color
Color Codes | |
---|---|
Hex Code | #680d9d |
RGB Code | rgb(104, 13, 157) |
HSL Code | hsl(278, 85%, 33%) |
#680d9d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(104, 13, 157); }
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(278, 85%, 33%); }
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 #680d9d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(104, 13, 157, 10%) | #680d9d1a | |
rgb(104, 13, 157, 20%) | #680d9d33 | |
rgb(104, 13, 157, 40%) | #680d9d4C | |
rgb(104, 13, 157, 60%) | #680d9d99 | |
rgb(104, 13, 157, 80%) | #680d9dCC | |
rgb(104, 13, 157, 100%) | #680d9dFF |
Saturated and desaturated colors of #680d9d
HSL Code | Preview |
---|---|
hsl(278, 10%, 33%) | |
hsl(278, 20%, 33%) | |
hsl(278, 40%, 33%) | |
hsl(278, 60%, 33%) | |
hsl(278, 80%, 33%) | |
hsl(278, 100%, 33%) |
#680d9d Color Usage In CSS
body { color: #680d9d; } p { color: rgb(104, 13, 157); } header { border-bottom:1px solid #680d9d; }