#8a236b Color
Color Codes | |
---|---|
Hex Code | #8a236b |
RGB Code | rgb(138, 35, 107) |
HSL Code | hsl(318, 60%, 34%) |
#8a236b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(138, 35, 107); }
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, 60%, 34%); }
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 #8a236b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(138, 35, 107, 10%) | #8a236b1a | |
rgb(138, 35, 107, 20%) | #8a236b33 | |
rgb(138, 35, 107, 40%) | #8a236b4C | |
rgb(138, 35, 107, 60%) | #8a236b99 | |
rgb(138, 35, 107, 80%) | #8a236bCC | |
rgb(138, 35, 107, 100%) | #8a236bFF |
Saturated and desaturated colors of #8a236b
HSL Code | Preview |
---|---|
hsl(318, 10%, 34%) | |
hsl(318, 20%, 34%) | |
hsl(318, 40%, 34%) | |
hsl(318, 60%, 34%) | |
hsl(318, 80%, 34%) | |
hsl(318, 100%, 34%) |
#8a236b Color Usage In CSS
body { color: #8a236b; } p { color: rgb(138, 35, 107); } header { border-bottom:1px solid #8a236b; }