#683242 Color
Color Codes | |
---|---|
Hex Code | #683242 |
RGB Code | rgb(104, 50, 66) |
HSL Code | hsl(342, 35%, 30%) |
#683242 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(104, 50, 66); }
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(342, 35%, 30%); }
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 #683242
RGB Code | Hex Code | Preview |
---|---|---|
rgb(104, 50, 66, 10%) | #6832421a | |
rgb(104, 50, 66, 20%) | #68324233 | |
rgb(104, 50, 66, 40%) | #6832424C | |
rgb(104, 50, 66, 60%) | #68324299 | |
rgb(104, 50, 66, 80%) | #683242CC | |
rgb(104, 50, 66, 100%) | #683242FF |
Saturated and desaturated colors of #683242
HSL Code | Preview |
---|---|
hsl(342, 10%, 30%) | |
hsl(342, 20%, 30%) | |
hsl(342, 40%, 30%) | |
hsl(342, 60%, 30%) | |
hsl(342, 80%, 30%) | |
hsl(342, 100%, 30%) |
#683242 Color Usage In CSS
body { color: #683242; } p { color: rgb(104, 50, 66); } header { border-bottom:1px solid #683242; }