#93638c Color
Color Codes | |
---|---|
Hex Code | #93638c |
RGB Code | rgb(147, 99, 140) |
HSL Code | hsl(309, 20%, 48%) |
#93638c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 99, 140); }
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(309, 20%, 48%); }
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 #93638c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 99, 140, 10%) | #93638c1a | |
rgb(147, 99, 140, 20%) | #93638c33 | |
rgb(147, 99, 140, 40%) | #93638c4C | |
rgb(147, 99, 140, 60%) | #93638c99 | |
rgb(147, 99, 140, 80%) | #93638cCC | |
rgb(147, 99, 140, 100%) | #93638cFF |
Saturated and desaturated colors of #93638c
HSL Code | Preview |
---|---|
hsl(309, 10%, 48%) | |
hsl(309, 20%, 48%) | |
hsl(309, 40%, 48%) | |
hsl(309, 60%, 48%) | |
hsl(309, 80%, 48%) | |
hsl(309, 100%, 48%) |
#93638c Color Usage In CSS
body { color: #93638c; } p { color: rgb(147, 99, 140); } header { border-bottom:1px solid #93638c; }