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